This repository was archived by the owner on Jun 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.3 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
39
40
{
"name": "distributed-task-observatory",
"version": "3.5.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "husky install .husky",
"check": "powershell -ExecutionPolicy Bypass -File ./scripts/pre-commit.ps1",
"lint:commits": "commitlint --from=HEAD~1",
"validate:contracts": "powershell -ExecutionPolicy Bypass -File ./scripts/validate-contracts.ps1",
"test:smoke": "powershell -ExecutionPolicy Bypass -File ./scripts/smoke-test.ps1",
"test:integration": "powershell -ExecutionPolicy Bypass -File ./scripts/integration-gate.ps1",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"amqplib": "^0.10.3",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"prom-client": "^15.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@types/node": "^20.10.0",
"husky": "^8.0.3",
"typescript": "^5.3.3",
"vitest": "^1.6.0"
},
"pnpm": {
"onlyBuiltDependencies": []
}
}