-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"config": "^1.26.2",
"cors": "^2.8.4",
"dateformat": "^3.0.2",
"express": "^4.16.2",
"lodash": "^4.17.4",
"mapbox": "^1.0.0-beta9",
"mapbox-gl": "^0.41.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.14",
"react-slick": "^0.15.4",
"react-visibility-sensor": "^3.11.0",
"redis": "^2.8.0",
"semantic-ui-react": "^0.74.2",
"slick-carousel": "^1.8.1",
"watson-developer-cloud": "^2.41.1"
},
"proxy": "http://localhost:8000",
"scripts": {
"prestart": "npm run build",
"start": "node backend",
"start-js": "react-scripts start",
"start:frontend": "npm-run-all -p watch-css start-js",
"start:backend": "nodemon backend",
"build": "npm run build-css && react-scripts build",
"build-css": "node-sass-chokidar src -o src/css",
"watch-css": "npm run build-css && node-sass-chokidar src -o src/css --watch --recursive",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"nodemon": "^1.12.1"
}
}