-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "test-application",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "tsx lib/db/migrate.ts && next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check"
},
"dependencies": {
"@ai-sdk/react": "^2.0.76",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@t3-oss/env-nextjs": "^0.11.1",
"ai": "^5.0.70",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.38.1",
"drizzle-zod": "^0.6.0",
"framer-motion": "^11.14.1",
"geist": "^1.3.1",
"lucide-react": "^0.468.0",
"nanoid": "^5.0.9",
"next": "15.5.7",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^1.7.1",
"streamdown": "^1.6.7",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.0",
"eslint": "^9.16.0",
"eslint-config-next": "15.5.7",
"pg": "^8.13.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}