-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.02 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
64
65
{
"name": "@lukadriel/nestjs-rabbitmq-transporter",
"version": "0.4.0",
"description": "A NestJS package for rabbitmq microservices using exchanges for event emission and queues for request-response messaging style",
"main": "dist/index.js",
"types": "dist",
"scripts": {
"build": "tsc -p .",
"dev": "tsc -w",
"prod": "tsc -p . && yarn publish",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"nestjs",
"microservices",
"rabbitmq"
],
"author": "Yozan Bi Adriel",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^9.1.6",
"@nestjs/core": "^9.1.6",
"@nestjs/microservices": "^9.1.6",
"@nestjs/platform-express": "^9.1.6",
"@nestjs/testing": "^9.1.6",
"@types/amqplib": "^0.10.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"amqp-connection-manager": "^4.1.9",
"amqplib": "^0.10.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@nestjs/common": "^7.6.17 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^7.6.17 || ^8.0.0 || ^9.0.0",
"@nestjs/microservices": "^7.6.17 || ^8.0.0 || ^9.0.0",
"amqp-connection-manager": "^4.1.9",
"amqplib": "^0.10.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lukadriel7/nestjs-rabbitmq-transporter.git"
},
"bugs": {
"url": "https://github.com/Lukadriel7nestjs-rabbitmq-transporter/issues"
},
"homepage": "https://github.com/Lukadriel7/nestjs-rabbitmq-transporter#readme"
}