-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "onitama-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env IMAGE_INLINE_SIZE_LIMIT=0 BROWSER=none react-app-rewired start",
"start-local-ai": "cross-env REACT_APP_LOCAL_AI=true IMAGE_INLINE_SIZE_LIMIT=0 BROWSER=none react-app-rewired start",
"build": "cross-env IMAGE_INLINE_SIZE_LIMIT=0 react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"build-native-dev": "wasm-pack build onitamalib --target bundler --out-dir ./src/onitamalib/build --dev",
"build-native-release": "wasm-pack build onitamalib --target bundler --out-dir ./src/onitamalib/build --release",
"lint": "eslint --ext .js,.jsx src"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"no-unused-vars": "off"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.61",
"clsx": "^1.1.1",
"color": "^3.1.3",
"cross-env": "^7.0.3",
"markdown-to-jsx": "^7.1.3",
"notistack": "^1.0.9",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"typeface-roboto": "^1.1.13",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"@material-ui/types": "latest",
"@wasm-tool/wasm-pack-plugin": "^1.5.0",
"customize-cra": "^1.0.0",
"customize-cra-eslint-ignore": "^0.1.2",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.0.5",
"react-app-rewired": "^2.1.6",
"wasm-pack": "^0.10.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}