-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "rps-online-v1",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "HOST=127.0.0.1 PORT=3000 tsx src/server/index.ts",
"dev:client": "vite --host 127.0.0.1 --port 5173 --strictPort",
"build": "tsc --noEmit && vite build",
"test": "npm run build",
"start": "node dist-server/server/index.js",
"server:build": "tsc -p tsconfig.server.json"
},
"dependencies": {
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.1",
"express": "^5.1.0",
"helmet": "^8.2.0",
"lucide-react": "^0.555.0",
"multer": "^2.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.4"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
}
}