-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "disastervisualizer",
"version": "0.1.0",
"private": true,
"homepage": "https://disastervision.herokuapp.com/",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"core-util-is": "^1.0.2",
"express": "^4.17.1",
"google-map-react": "^1.1.5",
"http-proxy-middleware": "^0.20.0",
"isomorphic-fetch": "^2.2.1",
"mongodb": "^3.3.2",
"path": "^0.12.7",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-google-maps": "^9.4.5",
"react-particles-js": "^2.7.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.2",
"unirest": "^0.6.0",
"yarn": "^1.17.3"
},
"proxy": "http://localhost:3001",
"scripts": {
"client-install": "npm install",
"start": "NODE_ENV=production node server.js",
"client": "react-scripts start",
"server": "nodemon server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "NODE_ENV=dev concurrently --kill-others-on-fail \\\"npm run server\\\" \\\"npm run client\\\"",
"heroku-postbuild": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}