-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
43
44
45
46
47
48
49
{
"name": "music-list",
"version": "0.1.0",
"private": true,
"devDependencies": {
"autoprefixer": "^7.2.3",
"concat": "^1.0.3",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"postcss-cli": "^4.1.1",
"redux-devtools-extension": "^2.13.2"
},
"browserslist": [
"> 1%",
"last 10 versions"
],
"dependencies": {
"axios": "^0.18.0",
"firebase": "^4.13.1",
"re-base": "^3.2.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-redux-firebase": "^2.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-localstorage": "^0.4.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-promise": "^0.5.3",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.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 sass/main.scss css/style.comp.css",
"concat:css": "concat -o css/style.concat.css css/venobox.css css/style.comp.css",
"prefix:css": "postcss css/style.concat.css --use autoprefixer -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.min.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css"
}
}