-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@cubiles/nestjs-message-broker",
"description": "The idea behind this module is to connect it to a message broker that enables the permanent distribution of messages.",
"private": false,
"version": "1.1.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"nestjs",
"rabbitmq",
"event",
"queue",
"message-broker"
],
"files": [
"dist"
],
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"start:dev": "nest start -p tsconfig.json --watch",
"format": "prettier --write \"{lib,tests}/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test:e2e": "jest --config ./tests/jest-e2e.json --verbose",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"release": "bash scripts/release.sh"
},
"dependencies": {
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"class-transformer": "^0.5.1"
},
"devDependencies": {
"@nestjs/common": "10.4.1",
"@nestjs/core": "10.4.1",
"@nestjs/platform-express": "10.4.1",
"@nestjs/testing": "10.4.1",
"@types/amqplib": "^0.10.5",
"@types/jest": "29.5.12",
"@types/node": "20.16.1",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"git-conventional-commits": "^2.6.7",
"jest": "29.7.0",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"replace-json-property": "^1.9.0",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"ts-jest": "29.2.4",
"typescript": "5.5.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cubiless/nestjs-message-broker"
}
}