-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "crapshoot",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-scripts": "^1.0.11"
},
"dependencies": {
"body-parser": "^1.17.2",
"classnames": "^2.2.5",
"express": "^4.15.4",
"gh-pages": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.20.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.0.2",
"react": "^16.2.0",
"react-dimensions": "^1.3.0",
"react-dom": "^16.2.0",
"react-emojione": "^5.0.0",
"react-modal": "^3.3.2",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"serve-favicon": "^2.4.3"
},
"homepage": "https://mduleone.github.io/crapshoot",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build && cp -R ./server ./.env ./build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}