-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 1014 Bytes
/
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
{
"name": "mods-manager",
"version": "0.1.0",
"private": true,
"dependencies": {
"ajv": "^6.12.6",
"cross-env": "^5.2.1",
"file-saver": "^2.0.5",
"flow-bin": "^0.80.0",
"memoize-one": "^3.1.1",
"npm": "^9.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^5.1.2",
"react-scripts": "3.4.4",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "cross-env HTTPS=true react-scripts start",
"build": "cross-env react-scripts build",
"test": "cross-env CI=true react-scripts test --env=jsdom --coverage",
"eject": "cross-env react-scripts eject",
"lint": "node node_modules/eslint/bin/eslint.js --config node_modules/eslint-config-react-app/index.js",
"flow": "flow"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}