-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"vercel-build": "npm run db:push && next build"
},
"dependencies": {
"@clerk/nextjs": "^5.2.10",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@libsql/client": "^0.17.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"emoji-picker-react": "^4.18.0",
"lucide-react": "^0.563.0",
"next": "14.2.35",
"next-themes": "^0.4.6",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.1",
"eslint-config-next": "^16.1.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}