-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
51
52
53
54
55
56
{
"name": "react-starter-bwm",
"version": "0.1.0",
"engines": {
"node": "10.4.0",
"npm": "4.6.1"
},
"private": true,
"proxy": {
"api/v1/*": {
"target": "http://localhost:3001"
}
},
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.0.0",
"bootstrap-daterangepicker": "^2.1.30",
"camel-case": "^3.0.0",
"express": "^4.16.4",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.22.2",
"mongoose": "^5.3.11",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2",
"popper.js": "^1.14.3",
"react": "^16.4.0",
"react-bootstrap-daterangepicker": "^4.1.0",
"react-dom": "^16.4.0",
"react-google-maps": "^9.4.5",
"react-redux": "^5.0.7",
"react-responsive-modal": "^3.0.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-toastify": "^4.0.0-rc.4",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-thunk": "^2.2.0",
"titlelize": "^0.18.0"
},
"scripts": {
"heroku-postbuild": "npm run build",
"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 start --prefix server",
"start-dev":"npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}