fifteen/worker/package.json
2026-03-01 21:59:44 +01:00

22 lines
461 B
JSON

{
"name": "@transportationer/worker",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@transportationer/shared": "*",
"bullmq": "^5.13.0",
"postgres": "^3.4.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}