-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.68 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "badezeit-sylt",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma db push --force-reset && npm run db:seed",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@hookform/resolvers": "^5.2.1",
"@prisma/client": "^6.19.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "^0.5.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.79.0",
"@tanstack/react-query": "^5.90.6",
"@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/react-table": "^8.21.3",
"@types/jspdf": "^1.3.3",
"@types/qrcode": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.24",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"lucide-react": "^0.539.0",
"next": "16.0.1",
"next-themes": "^0.4.6",
"prisma": "^6.19.0",
"qrcode": "^1.5.4",
"react": "19.1.0",
"react-day-picker": "^9.8.1",
"react-dom": "19.1.0",
"react-email": "^4.2.8",
"react-grid-layout": "^1.5.2",
"react-hook-form": "^7.62.0",
"recharts": "^3.1.2",
"resend": "^6.0.1",
"sonner": "^2.0.7",
"svix": "^1.71.0",
"tailwind-merge": "^3.3.1",
"xlsx": "^0.18.5",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcrypt": "^6.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-grid-layout": "^1.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.4",
"tw-animate-css": "^1.3.6",
"typescript": "5.9.3"
}
}