-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.59 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
50
{
"name": "chingu-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-boost": "^0.1.10",
"apollo-cache-inmemory": "^1.2.9",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.2.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"lodash": "^4.17.10",
"node-fetch": "^2.2.1",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"react": "^16.4.0",
"react-apollo": "^2.1.9",
"react-copy-to-clipboard": "^5.0.1",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.2.0",
"react-markdown": "^3.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.1.1",
"react-select": "^2.1.0",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"validator": "^10.7.0"
},
"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": "cross-env NODE_PATH=src npm-run-all -p watch-css build-fragments start-js",
"staging": "cross-env REACT_APP_API=staging npm run start",
"local": "cross-env REACT_APP_API=local npm run start",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-fragments build-js; echo \"/* /index.html 200\" > build/_redirects",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-fragments": "node ./build_fragments.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}