-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "discord-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"socket": "tsx socket-server/index.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@clerk/nextjs": "^7.7.0",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@hookform/resolvers": "^5.7.1",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@tanstack/react-query": "^5.102.1",
"@uploadthing/react": "^7.3.3",
"axios": "^1.19.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv": "^17.4.2",
"emoji-mart": "^5.6.0",
"lucide-react": "^1.29.0",
"next": "16.3.0",
"next-themes": "^0.4.6",
"pg": "^8.22.0",
"query-string": "^9.5.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "^7.85.0",
"shadcn": "^4.16.2",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"uploadthing": "^7.7.4",
"uuid": "^14.0.1",
"zod": "^4.4.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"prisma": "^7.9.1",
"tailwindcss": "^4",
"tsx": "^4.23.12",
"typescript": "^5"
}
}