-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
50
51
52
53
54
55
56
{
"name": "music_raze",
"version": "0.1.0",
"private": true,
"scripts": {
"start:all": "pnpm dlx prisma migrate dev && pnpm dlx prisma generate",
"docker": "docker run -p 5432:5432 -e POSTGRES_PASSWORD=randompassword postgres",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@neondatabase/serverless": "^0.9.5",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-neon": "^5.22.0",
"@prisma/client": "5.20.0",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.5",
"@tanstack/react-query": "^5.65.1",
"@tanstack/react-query-devtools": "^5.65.1",
"@types/node-fetch": "^2.6.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"install": "^0.13.0",
"lucide-react": "^0.438.0",
"next": "14.2.7",
"next-auth": "^4.24.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/next-auth": "^3.15.0",
"@types/node": "^20.17.16",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/ws": "^8.5.14",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.7",
"postcss": "^8.5.1",
"prisma": "^5.22.0",
"spotify-web-api-node": "^5.0.2",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}