-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.92 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": "temp-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:pull": "drizzle-kit pull",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:seed-admins": "node scripts/seed-local-admins.mjs",
"db:seed-apps": "node scripts/seed-fake-applications.mjs",
"images:optimize:home": "node scripts/optimize-images.mjs --preset home",
"images:optimize:about": "node scripts/optimize-images.mjs --preset about",
"images:optimize:members": "node scripts/optimize-images.mjs --preset member"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1116.0",
"@aws-sdk/client-ses": "^3.1118.0",
"@aws-sdk/s3-request-presigner": "^3.1116.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^0.2.3",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.81.1",
"aos": "^2.3.4",
"drizzle-orm": "^0.45.2",
"leaflet": "^1.9.4",
"next": "16.0.10",
"papaparse": "^5.5.3",
"postgres": "^3.4.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"react-leaflet": "^5.0.0",
"react-scroll": "^1.9.3",
"react-typed": "^2.0.12",
"server-only": "^0.0.1",
"zod": "^4.4.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/aos": "^3.0.7",
"@types/leaflet": "^1.9.20",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-scroll": "^1.8.10",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"raw-loader": "^4.0.2",
"sharp": "^0.35.3",
"supabase": "^2.114.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}