-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.17 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
{
"name": "bull-mq-transport",
"version": "3.0.1",
"description": "BullMQ Microservice Transport for NestJS",
"main": "dist/libs/bull-mq-transport/index.js",
"types": "dist/libs/bull-mq-transport/index.d.ts",
"scripts": {
"start": "nest start example",
"start:dev": "nest start example --watch --preserveWatchOutput",
"build": "nest build bull-mq-transport",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"lint": "eslint \"{apps,libs}/**/*.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"
},
"keywords": [],
"author": "xdave <xdave@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/xdave/bull-mq-transport"
},
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"@nestjs/common": "^8.x",
"@nestjs/microservices": ">=8.x",
"bullmq": ">=1.54.x"
},
"devDependencies": {
"@commitlint/cli": "^16.0.3",
"@commitlint/config-angular": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@nestjs/cli": "^8.2.0",
"@nestjs/common": "^8.2.5",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.2.5",
"@nestjs/microservices": "^8.2.5",
"@nestjs/platform-express": "^8.2.5",
"@nestjs/testing": "^8.2.5",
"@types/ioredis": "^4.28.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"bullmq": "^1.64.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-mock-extended": "^2.0.4",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}