-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 881 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 881 Bytes
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"lodash": "^4.17.11",
"merge": "^1.2.1",
"node-sass": "^4.11.0",
"react": "^16.8.6",
"react-dev-utils": "^8.0.0",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"sass-loader": "^6.0.7",
"url-parse": "^1.4.4",
"webpack-dev-server": "^3.2.1"
},
"scripts": {
"build-css": "node-sass-chokidar public/ -o public/",
"watch-css": "npm run build-css && node-sass-chokidar public/ -o public/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5"
}
}