-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "echoshare",
"version": "0.1.0",
"private": true,
"description": "Community-driven civic app for reporting and organizing against pollution near water bodies.",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "tsx prisma/seed.ts",
"directory:sync": "tsx scripts/sync-real-directory.ts",
"intelligence:sync": "tsx scripts/sync-intelligence.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@google/genai": "^1.47.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.19.2",
"@supabase/supabase-js": "^2.101.1",
"clsx": "^2.1.1",
"csv-parse": "^6.2.1",
"date-fns": "^4.1.0",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"lucide-react": "^1.7.0",
"nanoid": "^5.1.7",
"next": "16.2.2",
"next-auth": "^4.24.13",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/leaflet": "^1.9.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"prisma": "^6.19.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}