-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "probus-web",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/xAlcahest/BusFinder.git"
},
"type": "module",
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "node scripts/copy-maplibre-worker.mjs && next dev",
"build": "node scripts/copy-maplibre-worker.mjs && next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test tests/*.test.ts",
"ingest": "tsx scripts/ingest.ts",
"ingest:local": "tsx scripts/ingest.ts --from-file",
"smoke": "tsx scripts/smoke.ts"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"gtfs-realtime-bindings": "^2.2.0",
"maplibre-gl": "^6.5.0",
"next": "16.3.2",
"react": "19.2.8",
"react-dom": "19.2.8",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/yauzl": "^3.4.0",
"tailwindcss": "^4.1.11",
"tsx": "^4.23.12",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"protobufjs",
"sharp"
]
}
}