-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:status": "supabase status",
"supabase:env": "supabase status -o env",
"supabase:reset": "supabase db reset",
"seed:local-media": "node scripts/seed-local-media.mjs",
"supabase:diff": "supabase db diff",
"i18n:check": "node scripts/check-i18n-messages.mjs",
"check": "npm run i18n:check && npm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@hello-pangea/dnd": "^17.0.0",
"@heroicons/react": "^2.2.0",
"@maptiler/client": "^2.5.1",
"@maptiler/geocoding-control": "^2.0.1",
"@marsidev/react-turnstile": "^1.4.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "16.0.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-visually-hidden": "^1.1.1",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.2.0",
"clsx": "^2.1.1",
"compressorjs": "^1.2.1",
"feed": "^5.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.456.0",
"mapbox-gl": "^3.9.0",
"maplibre-gl": "^4.7.1",
"next": "16.0.10",
"next-intl": "^4.1.0",
"photoswipe": "^5.4.4",
"pmtiles": "^4.1.0",
"prettier": "^3.3.3",
"protomaps-themes-base": "^4.3.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-dropzone": "^14.3.5",
"react-map-gl": "^7.1.8",
"react-photoswipe-gallery": "^3.0.2",
"vaul": "^1.1.2"
},
"devDependencies": {
"@pigment-css/nextjs-plugin": "^0.0.30",
"@pigment-css/react": "^0.0.30",
"@types/node": "22.9.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"autoprefixer": "^10.4.20",
"baseline-browser-mapping": "^2.10.7",
"postcss": "^8.4.49",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.6.3"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0",
"whatwg-url": "13.0.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}