-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "petdex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check": "npx biome check .",
"format": "npx biome check --write .",
"generate-assets": "npx tsx scripts/generate-assets.ts",
"import-pet": "npx tsx scripts/import-pet.ts",
"build-packs": "npx tsx scripts/build-packs.ts"
},
"dependencies": {
"@clerk/nextjs": "^7.3.0",
"@neondatabase/serverless": "^1.1.0",
"@uploadthing/react": "^7.3.3",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^2.0.1",
"drizzle-orm": "^0.45.2",
"jszip": "^3.10.1",
"lucide-react": "^1.14.0",
"motion": "^12.43.0",
"next": "16.2.4",
"pg": "^8.22.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.12.2",
"uploadthing": "^7.7.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.3",
"typescript": "^5.7.0"
}
}