-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "tic-tac-toe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --kill-others --names \"next,websocket\" --prefix-colors \"cyan,green\" \"npm run next-dev\" \"npm run ws-dev\"",
"next-dev": "next dev",
"ws-dev": "bun --hot src/app/api/websockets.ts",
"production": "concurrently --kill-others --names \"next,websocket\" --prefix-colors \"cyan,green\" \"npm run next-prod\" \"npm run ws-prod\"",
"next-prod": "npm run start",
"build": "next build",
"start": "next start",
"ws-prod": "bun src/app/api/websockets.ts",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.2.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@types/bun": "^1.1.5",
"@types/express": "^4.17.21",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"express": "^4.19.2",
"lucide-react": "^0.379.0",
"next": "^14.2.11",
"next-auth": "^5.0.0-beta.18",
"prettier": "^3.2.5",
"react": "^18",
"react-dom": "^18",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.16.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.4"
}
}