-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "taxirouter-sg",
"version": "3.0.0",
"description": "Explore available taxis and taxi stands in Singapore",
"keywords": [
"taxi",
"singapore",
"transport"
],
"author": "Lim Chee Aun",
"license": "MIT",
"scripts": {
"start": "parcel --no-hmr --no-autoinstall ./src/index.html",
"start-https": "npm start -- --https",
"build": "parcel build --no-cache ./src/index.html",
"postbuild": "cpy public/* dist",
"taxi-stands": "node scripts/fetch-taxi-stands.js"
},
"dependencies": {
"@deck.gl/core": "~8.6.4",
"@deck.gl/layers": "~8.6.4",
"@deck.gl/mapbox": "~8.6.4",
"@deck.gl/mesh-layers": "~8.6.4",
"@loaders.gl/core": "~3.0.13",
"@loaders.gl/draco": "~3.0.13",
"@loaders.gl/gltf": "~3.0.13",
"@loaders.gl/obj": "~3.0.13",
"@luma.gl/core": "~8.5.10",
"@turf/circle": "~6.5.0",
"@turf/helpers": "~6.5.0",
"@turf/nearest-point": "~6.5.0",
"@turf/points-within-polygon": "~6.5.0",
"cheap-ruler": "~3.0.1",
"geokdbush": "~1.1.0",
"kdbush": "~3.0.0",
"mapbox-gl": "~2.6.1",
"regenerator-runtime": "~0.13.9"
},
"devDependencies": {
"cpy-cli": "~3.1.1",
"parcel": "~2.0.1"
}
}