-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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": "hurricaneshelters",
"version": "2.1.0",
"private": true,
"engines": {
"npm": "5.3.0",
"node": "8.4.0"
},
"dependencies": {
"gh-pages": "^1.0.0",
"http-server": "^0.10.0",
"leaflet": "^1.2.0",
"leaflet.markercluster": "^1.1.0",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"qs": "^6.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-facebook": "^4.0.14",
"react-ga": "^2.2.0",
"react-helmet": "^5.2.0",
"react-highlight-words": "^0.8.1",
"react-icons": "^2.2.5",
"react-leaflet": "^1.6.4",
"react-leaflet-markercluster": "^1.1.6",
"react-modal": "^2.3.2",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"react-scripts": "1.0.12"
},
"scripts": {
"start": "react-scripts start --history-api-fallback",
"build": "react-scripts build --history-api-fallback",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build&&gh-pages -d build",
"setup-vars": "./bin/setup",
"heroku-prebuild": "npm run setup-vars",
"heroku-postbuild": "npm install --only=dev && npm run build",
"start-static": "http-server ./build -p 3000 --cors"
},
"homepage": "/"
}