-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "drizzle-kit migrate && bun lib/db/seed.ts && next build",
"build-only": "next build",
"start": "next start",
"db:setup": "bun tsx lib/db/setup.ts",
"db:seed": "bun lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "4.1.7",
"@tanstack/react-form": "^1.27.1",
"@types/node": "^22.19.1",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"autoprefixer": "^10.4.22",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.43.1",
"jose": "^6.1.3",
"lucide-react": "^0.559.0",
"next": "15.6.0-canary.58",
"postcss": "^8.5.6",
"postgres": "^3.4.7",
"radix-ui": "^1.4.3",
"react": "19.2.1",
"react-day-picker": "^9.12.0",
"react-dom": "19.1.0",
"recharts": "2.15.4",
"server-only": "^0.0.1",
"stripe": "^18.5.0",
"swr": "^2.3.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "4.1.7",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"zod": "^3.25.76"
},
"devDependencies": {
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}