-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "nestjs-rabbitmq-retry",
"version": "2.1.1",
"description": "NestJS RabbitMQ Retry",
"author": "Álvaro Oliveira",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"NestJS",
"RabbitMQ",
"AMQP",
"Retry"
],
"repository": {
"type": "git",
"url": "https://github.com/algab/nestjs-rabbitmq-retry"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch"
},
"peerDependencies": {
"@nestjs/common": ">=9.0",
"@nestjs/core": ">=9.0",
"amqplib": ">=0.10",
"rxjs": ">=7.0"
},
"dependencies": {
"@golevelup/nestjs-discovery": "^4.0.0"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.4.0",
"@nestjs/common": "^10.1.2",
"@nestjs/core": "^10.1.2",
"@nestjs/testing": "^10.1.3",
"@types/amqplib": "^0.10.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"amqplib": "^0.10.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}