-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hookstream",
"version": "0.1.0",
"description": "Production-grade webhook delivery engine with retries, circuit breakers, and observability.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest",
"test:integration": "jest --testPathPattern=tests/integration",
"test:unit": "jest --testPathPattern=tests/unit",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"migrate": "ts-node src/db/migrations/runner.ts"
},
"keywords": [
"webhook",
"delivery",
"queue",
"bullmq",
"redis",
"postgres"
],
"author": "Yoweli Kachala",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@bull-board/api": "^7.1.5",
"@bull-board/express": "^7.1.5",
"bullmq": "^5.4.0",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"pg": "^8.11.3",
"pino": "^8.17.2",
"pino-http": "^9.0.0",
"prom-client": "^15.1.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nock": "^13.5.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}