-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
49 lines (49 loc) · 1.5 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"db:generate": "drizzle-kit generate",
"db:setup": "npx tsx lib/db/setup.ts",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:enhance": "npx tsx lib/db/enhance-metadata.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.62",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/node": "^22.7.0",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vercel/blob": "^0.24.0",
"ai": "^3.4.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "0.0.0-experimental-57db2f6-20240926",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.33.0",
"lucide-react": "^0.446.0",
"music-metadata": "^10.5.0",
"next": "15.0.0-canary.176",
"postcss": "^8.4.47",
"postgres": "^3.4.4",
"react": "19.0.0-rc-7771d3a7-20240827",
"react-dom": "19.0.0-rc-7771d3a7-20240827",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.1.5",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}