-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "code2give",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"seed": "tsx prisma/seed.ts",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-neon": "^7.5.0",
"@prisma/client": "^7.5.0",
"@react-google-maps/api": "^2.20.8",
"@react-pdf/renderer": "^4.3.2",
"@turf/convex": "^7.3.4",
"@turf/helpers": "^7.3.4",
"@types/leaflet": "^1.9.21",
"autoprefixer": "^10.4.27",
"clsx": "^2.1.1",
"colorthief": "^3.3.1",
"csv-parser": "^3.2.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.0",
"leaflet": "^1.9.4",
"lucide-react": "^0.577.0",
"next": "16.1.6",
"pg": "^8.20.0",
"postcss": "^8.5.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-leaflet": "^5.0.0",
"recharts": "^3.8.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.37",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^16.0.0",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"prisma": "^7.5.0",
"supabase": "^2.78.1",
"tailwindcss": "^4.2.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}