-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 981 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
32
33
34
{
"name": "shopping-cart",
"version": "0.0.1",
"private": true,
"devDependencies": {
"css-loader": "^0.28.7",
"enzyme": "^2.8.2",
"node-sass": "^4.7.2",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"react-scripts": "^1.0.1",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^15.5.0",
"react-redux": "^5.0.5",
"redux": "^3.5.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.1.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/ --recursive",
"watch-css": "node-sass-chokidar src/ -o src/ --watch --recursive ",
"watch-scss": "npm run build-css && npm run watch-css",
"start" : "npm-run-all -p watch-scss react-start",
"react-start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test"
}
}