-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.12 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
{
"name": "party-games",
"version": "1.0.0",
"description": "大屏幕多人派对游戏合集 - 支持50+人同时参与,手机扫码即玩",
"main": "server/index.js",
"author": "",
"license": "MIT",
"keywords": [
"party-game",
"multiplayer",
"socket.io",
"big-screen",
"qrcode",
"gold-miner",
"tank-battle",
"squid-game",
"tug-of-war",
"racing"
],
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/index.js",
"client": "cd client && npm run dev",
"install-all": "npm install && cd client && npm install",
"build": "cd client && npm install && npm run build",
"start": "NODE_ENV=production node server/index.js",
"start:win": "set NODE_ENV=production && node server/index.js"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.2",
"cors": "^2.8.5",
"qrcode": "^1.5.3"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}