-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@aiondigital/messaging-queues",
"version": "1.1.5",
"description": "messaging queues based on different message brokers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"lint": "eslint \"**/*.{ts,tsx}\"",
"prepublish": "npm run build"
},
"keywords": [
"messaging",
"queues",
"rabbitmq",
"bull"
],
"author": "waqas jamil",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wjamilaion/rubix-messaging-queues.git"
},
"peerDependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"amqplib": "^0.10.3",
"bull": "^3.3 || ^4.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@types/amqplib": "^0.10.2",
"@types/bull": "3.15.9",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"bull": "4.11.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"prettier": "^3.0.3",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*.ts": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"files": [
"dist/**/*"
],
"dependencies": {
"rimraf": "^5.0.5"
}
}