forked from crafter-station/petdex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "petdex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check": "biome check .",
"format": "biome check --write .",
"generate-assets": "bun scripts/generate-assets.ts",
"auto-tag": "bun scripts/auto-tag.ts",
"test": "bun test"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1041.0",
"@aws-sdk/s3-request-presigner": "^3.1041.0",
"@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",
"next": "16.2.4",
"openai": "^6.35.0",
"postcss": "^8.5.13",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.12.2",
"sharp": "^0.34.5",
"uploadthing": "^7.7.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^20.19.39",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.2.4",
"typescript": "^5.9.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}