-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.35 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
{
"name": "simpsons-todo-app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"chakram": "^1.5.0",
"node-sass": "^4.5.0",
"react-scripts": "0.9.3"
},
"dependencies": {
"deep-freeze": "0.0.1",
"jquery": "^3.1.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"rxjs": "^5.2.0",
"shortid": "^2.2.6",
"wavesurfer.js": "^1.3.4"
},
"scripts": {
"build-css": "node-sass src/scss/styles.scss -i -o src/css && cp -rf src/css/styles.css public/styles.css",
"watch-css": "nodemon -e scss -x 'npm run build-css'",
"start-react-app": "react-scripts start",
"start": "npm run start-react-app",
"build": "react-scripts build && npm run remove-stuff && npm run move-assets && npm run move-favicon && npm run move-index",
"remove-stuff" : "rm -rf server/public/**",
"move-assets": "mv -f build/static/** server/public && mv -f build/styles.css server/public/css/styles.css",
"move-favicon": " mv -f build/favicon.ico server/public/favicon.ico ",
"move-index": "mv -f build/index.html server/views/index.ejs",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}