-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@mkfyi/nestjs-rmq",
"version": "1.5.0",
"description": "A decent NestJS module for a more advanced communication between microservices using the full power of RabbitMQ",
"author": {
"name": "Michael Kilian",
"url": "https://github.com/mkfyi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mkfyi/nestjs-rmq.git"
},
"bugs": {
"url": "https://github.com/mkfyi/nestjs-rmq/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"amqp",
"amqplib",
"amqp 0-9-1",
"nest",
"nestjs",
"nest-amqp",
"nestjs-amqp",
"nest-amqplib",
"nestjs-amqplib",
"nest-rabbitmq",
"nestjs-rabbitmq",
"nest-rmq",
"nestjs-rmq",
"rabbitmq",
"rabbit-mq",
"rmq",
"typescript"
],
"peerDependencies": {
"@nestjs/common": "^10.4.5",
"@nestjs/core": "^10.4.5",
"@types/amqplib": "^0.10.5",
"reflect-metadata": "^0.2.2"
},
"peerDependenciesMeta": {
"reflect-metdata": {
"optional": true
},
"@nestjs/common": {
"optional": true
},
"@nestjs/core": {
"optional": true
},
"@types/amqplib": {
"optional": false
}
},
"dependencies": {
"amqplib": "^0.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/common": "^10.4.5",
"@nestjs/core": "^10.4.5",
"@nestjs/schematics": "^10.2.2",
"@nestjs/testing": "^10.4.5",
"@types/amqplib": "^0.10.5",
"@types/jest": "29.5.13",
"@types/node": "^22.7.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "29.7.0",
"prettier": "^3.3.3",
"reflect-metadata": "^0.2.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "nest build",
"format": "prettier --write \"lib/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
}
}