-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.97 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
67
68
69
{
"name": "wedding",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "docker compose up --force-recreate -d db && next dev",
"dev:newt": "docker compose --profile tunnel up -d db newt && next dev",
"build": "prisma generate && next build",
"start": "next start",
"start:prod": "NODE_ENV=production next start -H 0.0.0.0 -p ${PORT:-3001}",
"start:prod:bg": "bash scripts/prod-start.sh",
"prod:stop": "bash scripts/prod-stop.sh",
"prod": "docker compose up -d db && npm run build && npm run start:prod:bg",
"prod:fg": "docker compose up -d db && npm run build && npm run start:prod",
"stress": "bash scripts/stress-test.sh",
"lint": "eslint",
"test": "tsx --test tests/**/*.test.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"archiver": "^8.0.0",
"busboy": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"framer-motion": "^13.1.1",
"lucide-react": "^1.33.0",
"next": "^16.3.2",
"next-auth": "^4.24.15",
"next-themes": "^0.4.6",
"pg": "^8.23.0",
"prisma": "^7.9.1",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"sharp": "^0.35.3",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"uuid": "^14.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/archiver": "^8.0.0",
"@types/busboy": "^1.5.4",
"@types/node": "^26",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"eslint": "^9",
"eslint-config-next": "16.3.2",
"shadcn": "^4.18.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"allowScripts": {
"@prisma/engines": true,
"prisma": true,
"sharp": true,
"unrs-resolver": true
},
"overrides": {
"sharp": "^0.35.3",
"postcss": "^8.5.25"
}
}