-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 972 Bytes
/
package.json
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
{
"name": "event-driven",
"version": "1.0.56",
"description": "makes building event-driven-architecture easy",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "github:hoffnung8493/event-driven",
"homepage": "https://github.com/hoffnung8493/event-driven#readme",
"scripts": {
"build": "NODE_OPTIONS=\"--max-old-space-size=2048\" && tsc"
},
"keywords": [
"event driven architecture",
"event store",
"message broker",
"dead letter queue",
"NATS JetStream",
"retry",
"eventual consistency",
"pubsub",
"DLQ"
],
"author": "Sihoon Kim",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cron": "^1.8.2",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.4",
"nats": "^2.6.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8"
}
}