forked from nazarli-shabnam/SignalHub
-
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.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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": "signalhub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^6.38.2",
"@livekit/components-react": "^2.9.20",
"@livekit/components-styles": "^1.2.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"livekit-client": "^2.17.2",
"livekit-server-sdk": "^2.15.0",
"lucide-react": "^0.460.0",
"next": "^16.1.6",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwind-merge": "^2.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.39.3",
"eslint-config-next": "^0.2.4",
"postcss": "^8.4.0",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.0.0"
}
}