-
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.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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": "reboot-hackathon-2025",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "drizzle-kit migrate:pg",
"db:push": "drizzle-kit push",
"seed:tags": "bun run scripts/seed-tags.ts",
"seed:items": "bun run scripts/seed-items.ts",
"embed:items": "bun run scripts/embed-items.ts"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.32",
"@clerk/backend": "^2.14.0",
"@clerk/nextjs": "^6.32.0",
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-email/render": "^1.2.3",
"@vercel/blob": "^2.0.0",
"ai": "^5.0.48",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"lucide-react": "^0.544.0",
"next": "15.5.3",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.63.0",
"resend": "^6.1.0",
"shadcn-ui": "^0.9.5",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.8",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@next/eslint-plugin-next": "^15.5.3",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^20.19.17",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"drizzle-kit": "^0.31.4",
"eslint": "^9.36.0",
"eslint-config-next": "15.5.3",
"eslint-plugin-react-hooks": "^5.2.0",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2"
}
}