-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.54 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
{
"name": "make-a-multiplayer-card-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-loa": "ts-node loading.ts",
"start-server": "ts-node server/index.ts",
"start-client": "ts-node client/index.ts",
"start-server-demon": "ts-node server/index.ts",
"start-client-demon": "ts-node client/index.ts",
"pbts-win": ".\\share\\proto\\protoc.exe --plugin=protoc-gen-ts_proto=.\\node_modules\\.bin\\protoc-gen-ts_proto.cmd --ts_proto_opt=esModuleInterop=true --ts_proto_out=. .\\share\\proto\\card-game.proto",
"pbts": "./share/proto/protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_out=. ./share/proto/card-game.proto",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lizhiyu-me/Make-a-multiplayer-card-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lizhiyu-me/Make-a-multiplayer-card-game/issues"
},
"homepage": "https://github.com/lizhiyu-me/Make-a-multiplayer-card-game#readme",
"dependencies": {
"@types/node": "^17.0.21",
"@types/protobufjs": "^6.0.0",
"@types/readline-sync": "^1.4.4",
"chinese-poker": "^1.0.5",
"protobufjs": "^6.11.2",
"readline-sync": "^1.4.10",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"ts-proto": "^1.108.0",
"typescript": "^4.6.2"
}
}