-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.67 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.67 KB
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
72
73
74
75
{
"name": "busrouter-sg",
"version": "3.0.0",
"description": "Singapore Bus Routes Explorer",
"author": "Lim Chee Aun",
"license": "MIT",
"scripts": {
"start": "parcel serve index.html bus-arrival/index.html bus-first-last/index.html visualization/index.html -p 8888",
"build": "parcel build index.html bus-arrival/index.html bus-first-last/index.html visualization/index.html --no-cache --no-scope-hoist",
"postbuild": "cpy {favicon.ico,ads.txt} dist && cpy well-known/* dist/.well-known && node tasks/generateHeaders",
"prod": "npx serve dist/",
"test:e2e": "playwright test",
"pmtiles-1": "pmtiles extract https://build.protomaps.com/20250629.pmtiles singapore.pmtiles --bbox=103.56,1.15,104.13,1.48",
"pmtiles-2": "pmtiles extract https://overturemaps-tiles-us-west-2-beta.s3.amazonaws.com/2025-06-25/buildings.pmtiles tiles/singapore-buildings.pmtiles --bbox=103.56,1.15,104.13,1.48"
},
"dependencies": {
"@deck.gl/core": "9.1.12",
"@deck.gl/layers": "9.1.12",
"@deck.gl/mapbox": "9.1.12",
"@mapbox/mapbox-gl-language": "~1.0.1",
"@protomaps/basemaps": "~5.4.1",
"@sentry/react": "~9.33.0",
"@sentry/tracing": "~7.120.3",
"cheap-ruler": "~4.0.0",
"date-fns": "~4.1.0",
"fuse.js": "~7.1.0",
"i18next": "~25.2.1",
"i18next-browser-languagedetector": "~8.2.0",
"just-intersect": "~4.3.0",
"lscache": "~1.3.2",
"maplibre-gl": "~5.6.0",
"pmtiles": "~4.3.0",
"preact": "~10.26.9",
"react-i18next": "~15.5.3",
"use-resize-observer": "~9.1.0",
"workbox-cacheable-response": "~7.3.0",
"workbox-expiration": "~7.3.0",
"workbox-google-analytics": "~7.3.0",
"workbox-range-requests": "~7.3.0",
"workbox-routing": "~7.3.0",
"workbox-strategies": "~7.3.0"
},
"devDependencies": {
"@babel/core": "~7.27.7",
"@babel/plugin-transform-react-jsx": "~7.27.1",
"@mapbox/polyline": "~1.2.1",
"@parcel/babel-plugin-transform-runtime": "~2.15.4",
"@parcel/babel-preset-env": "~2.15.4",
"@parcel/config-default": "~2.15.4",
"@parcel/packager-raw-url": "~2.15.4",
"@parcel/transformer-image": "~2.15.4",
"@parcel/transformer-webmanifest": "~2.15.4",
"@playwright/test": "~1.56.1",
"@turf/circle": "~7.2.0",
"@turf/helpers": "~7.2.0",
"@turf/simplify": "~7.2.0",
"babel-plugin-transform-remove-console": "~6.9.4",
"cpy-cli": "5.0.0",
"netlify-plugin-ttl-cache": "~1.0.2",
"parcel": "~2.15.4",
"process": "~0.11.10"
},
"alias": {
"react": "preact/compat"
},
"browserslist": [
">0.25%",
"not dead",
"not ie 11",
"not chrome < 51",
"not op_mini all",
"not Android > 1",
"not safari < 10"
]
}