register match working

This commit is contained in:
2023-08-09 23:32:36 +02:00
parent fecbb80975
commit 338a283a07
10 changed files with 758 additions and 406 deletions
+5 -3
View File
@@ -11,6 +11,7 @@
"pg": "^8.9.0",
"redis": "^4.6.5",
"ts-node": "^10.9.1",
"typia": "^4.2.1",
"ws": "^8.13.0"
},
"devDependencies": {
@@ -33,11 +34,12 @@
},
"main": "out/index.js",
"scripts": {
"build": "npx tsc",
"build": "npm run generate && npx tsc",
"startServer": "node out/serverMain.js",
"startClient": "node out/clientMain.js",
"startWebsocket": "node out/websocket.js",
"documentation": "redocly build-docs .\\docs\\v2.yml --output=docs\\index.html",
"test": "jest --runInBand"
"test": "jest --runInBand",
"generate": "npx typia generate --input src/templates --output src/generated --project tsconfig.json"
}
}
}