This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.41 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
{
"name": "@ejhayes/nestjs-bullmq",
"version": "0.0.0-development",
"description": "Nest - modern, fast, powerful node.js web framework (@bullmq)",
"homepage": "https://github.com/ejhayes/nestjs-bullmq",
"bugs": {
"url": "https://github.com/ejhayes/nestjs-bullmq/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ejhayes/nestjs-bullmq.git"
},
"license": "MIT",
"contributors": [],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier -c **/*.{md,ts,json,yml}",
"format:fix": "prettier --write **/*.{md,ts,json,yml}",
"lint": "eslint \"lib/**/*.ts\"",
"lint:fix": "eslint \"lib/**/*.ts\" --fix",
"prepack": "npm run build",
"prepare": "husky install",
"release": "semantic-release",
"test": "jest --detectOpenHandles --forceExit --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --forceExit --coverage --runInBand"
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nestjs/common": "9.0.5",
"@nestjs/core": "9.0.5",
"@nestjs/platform-express": "9.0.5",
"@nestjs/testing": "9.0.5",
"@types/jest": "28.1.6",
"@types/node": "18.0.6",
"@types/reflect-metadata": "0.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"bullmq": "^1.86.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"hosted-git-info": ">=5.0.0",
"husky": "^8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"minimist": ">=1.2.6",
"prettier": "^2.7.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.6",
"semantic-release": "^19.0.3",
"sort-package-json": "1.57.0",
"trim-newlines": ">=4.0.2",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.0.0",
"tslint": "6.1.3",
"typescript": "4.7.4",
"ws": ">=8.8.1",
"y18n": ">=5.0.8"
},
"peerDependencies": {
"@nestjs/common": "^6.10.11 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^6.10.11 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"bullmq": "^1.86.7"
}
}