-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
71 lines (71 loc) · 2.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "exploretrees-sg",
"version": "3.0.0",
"description": "Explore trees in Singapore",
"scripts": {
"trees": "node scripts/fetch-trees",
"chunk": "node --max-old-space-size=4096 scripts/chunk-trees",
"minify": "node scripts/minify-trees",
"pre-tiles": "node --max-old-space-size=4096 scripts/pre-tiles",
"tiles-important": "tippecanoe -f -r1 -l trees -o data/trees-important.mbtiles data/trees-important.geojson",
"tiles-other": "tippecanoe -f -r2 -Bg -as -ae -l trees -o data/trees-other.mbtiles data/trees-other.geojson",
"tiles-join": "tile-join -f -o data/trees.mbtiles data/trees-other.mbtiles data/trees-important.mbtiles",
"tiles": "npm run tiles-important && npm run tiles-other && npm run tiles-join",
"family": "node scripts/fetch-families",
"pois": "node scripts/fetch-pois",
"start": "parcel index.html 3d/index.html --no-hmr",
"prebuild": "rm -rf dist",
"build": "parcel build index.html 3d/index.html --no-scope-hoist",
"postbuild": "cpy {CNAME,favicon.ico} dist"
},
"keywords": [
"explore",
"tree",
"trees",
"singapore",
"fauna",
"heritage"
],
"author": "Lim Chee Aun",
"license": "MIT",
"devDependencies": {
"@parcel/packager-raw-url": "^2.0.0",
"@parcel/transformer-webmanifest": "^2.0.0",
"@turf/turf": "~6.5.0",
"autoprefixer": "~10.3.7",
"cpy-cli": "~3.1.1",
"got": "~11.8.2",
"parcel": "~2.0.0",
"postcss-import-url": "~7.0.0",
"postcss-modules": "~4.2.2"
},
"dependencies": {
"@deck.gl/core": "~8.6.0",
"@deck.gl/extensions": "~8.6.0",
"@deck.gl/geo-layers": "~8.6.0",
"@deck.gl/layers": "~8.6.0",
"@deck.gl/mapbox": "~8.6.0",
"@deck.gl/mesh-layers": "~8.6.0",
"@loaders.gl/core": "~3.0.12",
"@loaders.gl/draco": "~3.0.12",
"@luma.gl/core": "~8.5.10",
"@mapbox/polyline": "~1.1.1",
"@turf/circle": "~6.5.0",
"@ygoe/msgpack": "~1.0.3",
"deasync": "~0.1.23",
"geokdbush": "~1.1.0",
"just-throttle": "~3.0.0",
"kdbush": "~3.0.0",
"lit": "~2.0.2",
"papaparse": "~5.3.1",
"workbox-cacheable-response": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-google-analytics": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0"
},
"browserslist": ">0.25% in SG, not dead, not ie 11, not chrome < 51, not safari < 10, not op_mini all",
"@parcel/bundler-default": {
"minBundles": 10
}
}