-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "material-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"font-awesome": "^4.7.0",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-bootstrap": "^0.31.1",
"react-dom": "^15.6.1",
"react-intl": "^2.3.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"store": "^2.0.12"
},
"devDependencies": {
"react-scripts": "1.0.10",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2"
},
"scripts": {
"build-css": "node-sass src/static/css/scss -o src/static/css --output-style=compressed --source-map src/static/css",
"watch-css": "npm run build-css && node-sass src/static/css/scss -o src/static/css --watch --recursive --output-style=compressed --source-map src/static/css",
"start-react": "react-scripts start",
"start": "npm-run-all -p watch-css start-react",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}