-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) Β· 1.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) Β· 1.88 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": "traintracker",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prepare": "husky",
"postinstall": "prisma generate"
},
"engines": {
"node": "24",
"npm": "11"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.5.0",
"@prisma/client": "^7.5.0",
"@tailwindcss/postcss": "^4.2.1",
"@turf/turf": "^7.3.4",
"classnames": "^2.5.1",
"cookie": "^1.1.1",
"culori": "^4.0.2",
"dotenv": "^17.3.1",
"gray-matter": "^4.0.3",
"gtfs": "^4.18.3",
"gtfs-realtime-bindings": "^1.1.1",
"isomorphic-dompurify": "^3.3.0",
"luxon": "^3.7.2",
"maplibre-gl": "^5.20.1",
"marked": "^17.0.4",
"motion": "^12.37.0",
"next": "^16.1.7",
"papaparse": "^5.5.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-map-gl": "^8.1.0",
"react-modal-sheet": "^5.4.1",
"react-select": "^5.10.2",
"web-push": "^3.6.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/culori": "^4.0.1",
"@types/luxon": "^3.7.1",
"@types/node": "^25.5.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8",
"eslint": "~10.0",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.5.0",
"tailwindcss": "^4.2.1",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prisma": {
"schema": "db/schema.prisma"
}
}