-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.93 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
59
60
61
62
63
64
65
66
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"build:production": "node scripts/build-production.mjs",
"postinstall": "prisma generate && patch-package",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"db:clear-customers": "tsx scripts/clear-customer-data.ts",
"db:apply-apr-holds": "tsx scripts/apply-apr-5-6-slot-holds.ts",
"db:backfill-slots-6-20": "tsx scripts/backfill-booking-slots-6-20-hkt.ts",
"verify:twilio": "tsx scripts/verify-twilio-credentials.ts",
"build:george-li-gallery": "tsx scripts/build-george-li-gallery.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@fontsource/cormorant-garamond": "^5.2.11",
"@fontsource/dm-sans": "^5.2.8",
"@google/genai": "^1.46.0",
"@prisma/client": "5.22.0",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^11.0.0",
"@vercel/analytics": "^2.0.1",
"argon2": "^0.44.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"googleapis": "^144.0.0",
"jose": "^6.2.2",
"nanoid": "^5.1.7",
"next": "16.2.1",
"prisma": "5.22.0",
"qrcode": "^1.5.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.9.4",
"sharp": "^0.34.5",
"three": "^0.159.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"patch-package": "^8.0.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^3.2.4"
}
}