-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "hex-ai-distributed",
"version": "1.0.0",
"description": "Hex AI distributed. Send move calculation to peers.",
"author": "Julien Maulny",
"license": "AGPL-3.0",
"scripts": {
"test": "mocha src/**/test/**/*.ts -n import=ts-node/esm --extension ts",
"server": "nodemon src/server/index.ts",
"peer-server": "nodemon src/peer-server/index.ts",
"worker": "nodemon src/worker/index.ts",
"build": "rm -fr dist/ && tsc && cp .env* dist/",
"generate": "yarn typia generate --input src/shared/model --output src/shared/typia-generated",
"prepare": "ts-patch install && typia patch",
"obliterate": "yarn ts-node obliterate.ts"
},
"dependencies": {
"@bull-board/express": "^5.10.2",
"@influxdata/influxdb3-client": "^0.7.0",
"bullmq": "^4.15.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.11.0",
"p-queue": "<=6.6.2",
"tiny-typed-emitter": "^2.1.0",
"typia": "^5.3.5",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"mocha": "^10.3.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.3.3"
}
}