-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
63 lines (63 loc) · 1.6 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
62
63
{
"name": "nestjs-rmq",
"version": "2.13.0",
"description": "NestJS RabbitMQ Module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "tsc -p tsconfig.json",
"test:e2e": "jest --config e2e/jest-e2e.json --runInBand",
"test": "jest --config jest.json",
"lint": "eslint ./lib/** --fix"
},
"author": "Anton Larichev <[email protected]>",
"keywords": [
"amqp",
"rabbitmq",
"typescript",
"nodejs",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/AlariCode/nestjs-rmq"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlariCode/nestjs-rmq/issues"
},
"homepage": "https://github.com/AlariCode/nestjs-rmq",
"dependencies": {
"@types/amqplib": "^0.10.3",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.3",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/testing": "^10.2.7",
"@types/amqp-connection-manager": "^3.4.1",
"@types/chalk": "^2.2.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0"
}
}