This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.68 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
57
{
"name": "rapid-deployment-maps",
"version": "1.0.0",
"description": "Rapid Deployment Maps",
"main": "app.js",
"license": "MIT",
"scripts": {
"config": "node src/config.js",
"start:mongo": "docker run -d -p 27017:27017 mongo",
"start": "concurrently \"node src/app.js\" \"parcel src/index.html --open --no-cache -d build\"",
"build": "parcel build src/index.html -d build --no-cache && mkdir -p build/app",
"deploy": "npm run build && cp ./src/app.js ./build/app/app.js && cd build && concurrently \"node ./app/app.js\" serve"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "8",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.1.2",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@mapbox/mapbox-gl-geocoder": "4.0.0",
"@mapbox/togeojson": "^0.16.0",
"@turf/area": "^6.0.1",
"@turf/length": "^6.0.2",
"axios": "^0.18.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"brfs": "^2.0.2",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"csv2geojson": "^5.1.1",
"express": "^4.17.0",
"inquirer": "^6.2.2",
"mapbox-gl": "1.3.1",
"moment": "^2.23.0",
"mongodb": "^3.4.1",
"mongoose": "^5.8.5",
"replace-in-file": "^3.4.4",
"serve": "^10.1.2",
"shapefile": "^0.6.6",
"xmldom": "^0.1.31"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mapbox/mapbox/rapidDeploy.git"
},
"author": "mapbox",
"bugs": {
"url": "https://github.com/mapbox/rapidDeploy/issues"
},
"homepage": "https://github.com/mapbox/rapidDeploy#readme",
"browser": {
"fs": false
}
}