Files
filezzy-staging/worker/package.json
2026-02-04 14:16:04 +01:00

43 lines
1009 B
JSON

{
"name": "worker",
"version": "1.0.0",
"description": "Worker service for asynchronous job processing",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"worker",
"bullmq",
"job-queue"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"archiver": "^7.0.1",
"axios": "^1.13.3",
"bullmq": "^5.67.1",
"dotenv": "^17.2.3",
"form-data": "^4.0.5",
"image-size": "^2.0.2",
"ioredis": "^5.9.2",
"minio": "^8.0.6",
"pino": "^10.3.0",
"prisma": "^5.22.0",
"unzipper": "^0.12.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/node": "^25.0.10",
"@types/unzipper": "^0.10.5",
"@types/uuid": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}