-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "hotspots-server",
"version": "0.0.1",
"scripts": {
"start": "nodemon server.js",
"both": "\"node src/lib/server.js\" \"react-scripts start\"",
"start:dev": "concurrently \"nodemon src/lib/server.js\" \"react-scripts start\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.4.0",
"@mapbox/sphericalmercator": "^1.1.0",
"body-parser": "^1.19.0",
"chroma-js": "^2.1.0",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"mongoose": "^5.8.9",
"nodemon": "^1.19.4",
"path": "^0.12.7",
"react-addons-shallow-compare": "^15.6.2",
"react-map-gl": "^5.2.2",
"request": "^2.88.0",
"yarn": "^1.21.1"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "10.x"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}