-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "basketrandom",
"version": "0.1.0",
"private": true,
"scripts": {
"_dev": "concurrently \"next dev\" \"bun run game/index.js --hot --watch\"",
"dev": "NODE_ENV=development node server.js",
"build": "next build --experimental-build-mode compile",
"start": "node server.js",
"lint": "next lint",
"prepare": "next-ws patch && rm -rf data"
},
"type": "module",
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@flydotio/litestream": "^1.0.1",
"@prisma/client": "^6.6.0",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"discord.js": "^14.19.3",
"esbuild": "^0.25.3",
"http-proxy-middleware": "^3.0.5",
"lucide-react": "^0.503.0",
"next": "^15.2.4",
"next-themes": "^0.4.6",
"next-ws": "^2.0.6",
"node-static": "^0.7.11",
"puppeteer": "^24.7.2",
"puppeteer-stream": "^3.0.20",
"puppeteer-tab-recorder": "^0.2.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"reconnecting-websocket": "^4.4.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"twitch-stream-video": "^1.1.5",
"ws": "^8.18.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.7.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"prisma": "^6.5.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"dockerfile": {
"litestream": true
}
}