-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 797 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 797 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
31
{
"name": "processing-worker",
"version": "1.0.0",
"private": true,
"description": "Production-ready normalization worker for NPPWEB with retry/DLQ handling and strict contract validation.",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"check": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"amqplib": "^0.10.5",
"dotenv": "^16.4.7"
,"pino": "^9.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/amqplib": "^0.10.7",
"@types/node": "^22.10.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=20"
}
}