-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "event-driven-webhook-processor",
"version": "1.0.0",
"description": "Production-oriented backend service for webhook ingestion and asynchronous event processing.",
"main": "dist/api/main.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev:api": "tsx watch src/api/main.ts",
"dev:worker": "tsx watch src/worker/main.ts",
"start:api": "node dist/api/main.js",
"start:worker": "node dist/worker/main.js",
"test": "vitest run",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy"
},
"keywords": [
"webhooks",
"event-driven",
"bullmq",
"redis",
"typescript"
],
"author": "Marcus Vinicius de Oliveira Neves",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@fastify/static": "^9.1.3",
"@prisma/client": "^6.19.0",
"bullmq": "^5.63.0",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"ioredis": "^5.8.2",
"pino": "^10.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.10.1",
"pino-pretty": "^13.1.2",
"prisma": "^6.19.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
}
}