-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.17 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
{
"name": "word-app",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"history": "^4.7.2",
"localforage": "^1.5.6",
"material-ui": "^0.20.0",
"material-ui-next": "^1.0.0-beta.34",
"moment": "^2.20.1",
"node-sass-chokidar": "0.0.3",
"react": "^16.2.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17"
},
"scripts": {
"build-css": "node-sass-chokidar src/styles/scss -o src/styles/css",
"watch-css": "npm run build-css && node-sass-chokidar src/styles/scss -o src/styles/css --watch --recursive",
"sass": "sass --watch src/styles/scss:src/styles/css",
"start": "react-scripts start",
"build": "cp build/service-worker.js sw/ && react-scripts build && cp build/index.html build/404.html && cp sw/service-worker.js build/ && cp public/js/localforage.js build/static/js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"redux-devtools": "^3.4.1",
"sw-precache": "^5.2.1"
}
}