-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 KB
/
package.json
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
78
{
"name": "railtrack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"postinstall": "npx only-allow pnpm && prisma generate",
"test": "playwright test",
"prettier:write": "prettier --write ./src"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@heroicons/react": "1.0.6",
"@prisma/client": "5.22.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-helpers-react": "^0.5.0",
"@supabase/supabase-js": "^2.0.4",
"@tanstack/react-query": "^4.16.1",
"@trpc/client": "10.45.2",
"@trpc/next": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"@turf/bbox": "^7.0.0",
"@upstash/qstash": "^2.0.0",
"@vercel/edge": "^1.0.0",
"accept-language-parser": "1.5.0",
"axios": "1.7.9",
"clsx": "^2.0.0",
"cookies-next": "5.0.2",
"date-fns": "3.6.0",
"date-fns-tz": "^3.1.3",
"mapbox-gl": "^3.0.0",
"md5": "2.3.0",
"next": "^14.1.0",
"next-intl": "^3.5.2",
"react": "^18.2.0",
"react-breakout": "1.0.1",
"react-dom": "^18.2.0",
"react-hot-toast": "2.4.1",
"react-intersection-observer": "^9.4.1",
"react-map-gl": "7.1.7",
"react-relaxed": "1.1.5",
"recharts": "^2.5.0",
"sharp": "^0.33.2",
"superjson": "2.2.2",
"tailwind-merge": "^2.0.0",
"zod": "3.23.8",
"zustand": "5.0.2"
},
"devDependencies": {
"@playwright/test": "1.49.0",
"@tailwindcss/forms": "0.5.9",
"@types/accept-language-parser": "1.5.6",
"@types/geojson": "^7946.0.14",
"@types/md5": "2.3.5",
"@types/node": "20.17.9",
"@types/react": "18.3.14",
"@types/react-dom": "18.3.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-unicorn": "56.0.1",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.0",
"prisma": "5.22.0",
"tailwindcss": "3.4.16",
"typescript": "5.7.2"
}
}