Files
HexaHost-GameCloud/apps/worker/package.json
smueller 58961000eb
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 21s
CI / Go — edge-gateway build (push) Successful in 13s
Phase1
2026-06-26 11:31:54 +02:00

30 lines
732 B
JSON

{
"name": "@hexahost/worker",
"version": "0.0.0",
"private": true,
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "node -e \"process.exit(0)\"",
"typecheck": "tsc --noEmit",
"test": "node --test test/**/*.test.js"
},
"dependencies": {
"@hexahost/config": "workspace:*",
"@hexahost/database": "workspace:*",
"bullmq": "^5.34.10",
"nodemailer": "^6.10.0",
"pino": "^9.6.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@hexahost/typescript-config": "workspace:*",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}