multica/apps/gateway/package.json
yushen 25629f97ca fix(gateway): add build stage for workspace packages in Dockerfile
Add intermediate build stage to compile @multica/types, @multica/utils,
and @multica/core before the runtime stage so dist/ artifacts are
available. Also adds @multica/utils as an explicit gateway dependency.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 05:46:41 +08:00

29 lines
710 B
JSON

{
"name": "@multica/gateway",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx watch main.ts",
"start": "node --import tsx main.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@multica/core": "workspace:*",
"@multica/utils": "workspace:*",
"@nestjs/common": "^11.1.12",
"@nestjs/core": "^11.1.12",
"@nestjs/platform-socket.io": "^11.1.12",
"@nestjs/websockets": "^11.1.12",
"nestjs-pino": "^4.5.0",
"pino": "^10.3.0",
"pino-http": "^10.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3"
},
"devDependencies": {
"tsx": "catalog:",
"typescript": "catalog:"
}
}