-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:turbo": "next dev --turbopack -H 0.0.0.0",
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run lint:fix && npm run pages:build && wrangler pages dev .vercel/output/static",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"knip": "knip"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@serwist/next": "^9.0.15",
"@tanstack/react-query": "^5.83.0",
"@turf/bbox": "^7.2.0",
"@turf/boolean-clockwise": "^7.2.0",
"@turf/centroid": "^7.2.0",
"@turf/turf": "^7.2.0",
"clsx": "^2.1.1",
"fuse.js": "^7.0.0",
"mapbox-gl": "^3.5.0",
"maplibre-gl": "^5.0.0",
"next": "^15.4.5",
"ofetch": "^1.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"react-map-gl": "^8.0.4",
"react-markdown": "^9.0.3",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.0.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.13",
"@tailwindcss/postcss": "^4.0.9",
"@types/mapbox__mapbox-gl-geocoder": "^4.7.7",
"@types/node": "^22.13.8",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^8.44.0",
"eslint-config-next": "^15.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"eslint-plugin-unused-imports": "^4.1.4",
"knip": "^5.45.0",
"prettier": "3.0.0",
"serwist": "^9.0.15",
"typescript": "^5.8.3",
"vercel": "39.1.1",
"wrangler": "^4.28.0"
},
"overrides": {
"vercel": "$vercel"
}
}