-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "petitservice",
"version": "3.1.0",
"description": "Set of helpers designed for a Microservice architecture",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext js ."
},
"repository": {
"type": "git",
"url": "https://github.com/melalj/petitservice.git"
},
"keywords": [
"microservice",
"helpers",
"bootstrap",
"service loader",
"graceful exit",
"express",
"middlewares",
"trace",
"debug",
"errors",
"logger",
"rabbitmq",
"mongodb",
"redis",
"cache",
"database",
"migrations",
"utils",
"consumer",
"service"
],
"author": "Simo Elalj",
"license": "MIT",
"bugs": {
"url": "https://github.com/melalj/petitservice/issues"
},
"homepage": "https://github.com/melalj/petitservice",
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1"
},
"dependencies": {
"amqplib": "^0.10.4",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"deepmerge": "^4.3.1",
"mongodb": "^6.7.0",
"pino": "^8.19.0",
"pino-debug": "^2.0.0",
"pino-http": "^9.0.0",
"pino-pretty": "^11.0.0",
"redis": "^4.6.14",
"uuid": "^10.0.0"
}
}