-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 KB
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": "new-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"history": "^4.7.2",
"materialize-css": "^1.0.0-rc.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-icomoon": "^1.0.0",
"react-intl": "^2.8.0",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.4",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"watch:sass": "node-sass src/sass/main.scss src/css/style.css -w",
"compile:sass": "node-sass src/sass/main.scss src/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b \"last 10 versions\" src/css/style.comp.css -o src/css/style.prefix.css",
"compress:css": "node-sass src/css/style.prefix.css src/css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"devDependencies": {
"autoprefixer": "^9.4.2",
"concat": "^1.0.3",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.0.0",
"svg-sprite-loader": "^3.9.2"
}
}