-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
31
32
33
34
35
36
37
38
{
"name": "resilient-job-queue",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Idempotent background job API with PostgreSQL, Redis, BullMQ and TypeScript",
"scripts": {
"postinstall": "prisma generate",
"dev:api": "tsx watch src/app.ts",
"dev:worker": "tsx watch src/worker.ts",
"build": "prisma generate && tsc -p tsconfig.build.json",
"start:api": "node dist/app.js",
"start:worker": "node dist/worker.js",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"db:generate": "prisma generate",
"db:push": "prisma db push"
},
"dependencies": {
"@prisma/client": "^6.15.0",
"bullmq": "^5.58.5",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/express": "^5.0.3",
"@types/node": "^22.10.0",
"eslint": "^9.16.0",
"prisma": "^6.15.0",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vitest": "^3.2.4"
},
"engines": { "node": ">=22" }
}