-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "react-mobx-router",
"version": "0.2.2",
"private": true,
"devDependencies": {
"mobx-react-devtools": "^6.1.1",
"node-sass-chokidar": "1.3.4",
"npm-run-all": "4.1.5",
"react-scripts": "3.0.1"
},
"dependencies": {
"mobx": "^5.9.4",
"mobx-react": "^5.4.4",
"mobx-state-tree": "^3.14.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "4.2.2",
"styled-components": "3.1.6"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}