forked from shivamxverma/CodeSM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 881 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "workers",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/worker.js",
"dev": "node --watch src/worker.js",
"compose:up": "docker compose -f docker-compose.worker.yml --env-file .env up -d --build",
"compose:down": "docker compose -f docker-compose.worker.yml --env-file .env down",
"compose:logs": "docker compose -f docker-compose.worker.yml --env-file .env logs -f worker"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"bullmq": "^5.76.1",
"db-schema": "file:../db-schema",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.7.0",
"mongoose": "^9.3.3",
"pg": "^8.20.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"yup": "^1.7.1"
}
}