-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"db-pull": "dotenv -f .env.development -- npx drizzle-kit pull --config=./drizzle.config.ts",
"db-generate": "dotenv -f .env.development -- npx drizzle-kit generate --schema=./drizzle/schema.ts --dialect=postgresql",
"db-seed": "ts-node --transpile-only prisma/seed.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@deck.gl/core": "^9.0.36",
"@deck.gl/mapbox": "^9.0.38",
"@heroicons/react": "^2.1.4",
"@internationalized/date": "^3.6.0",
"@nextui-org/react": "^2.6.4",
"@nextui-org/system": "^2.4.5",
"@vercel/postgres": "^0.8.0",
"autoprefixer": "^10.4.20",
"deck.gl": "^9.0.36",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.4",
"drizzle-orm": "^0.36.4",
"framer-motion": "^11.12.0",
"jose": "^5.9.6",
"mapbox-gl": "^3.8.0",
"maplibre-gl": "^4.7.1",
"next": "15.1.1-canary.20",
"pg": "^8.13.1",
"pnpm": "^9.14.4",
"postcss": "8.4.38",
"react": "19.0.0-rc-f38c22b244-20240704",
"react-dom": "19.0.0-rc-f38c22b244-20240704",
"react-map-gl": "^7.1.7",
"server-only": "^0.0.1",
"tailwindcss": "3.4.4",
"ts-node": "^10.9.2",
"typescript": "5.5.2",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@types/node": "20.14.8",
"@types/pg": "^8.11.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"drizzle-kit": "^0.28.1",
"tsx": "^4.19.2"
},
"engines": {
"node": ">=20.12.0"
}
}