forked from ejhayes/nestjs-bullmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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": {
"prepack": "npm run build",
"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",
"release": "semantic-release",
"test": "jest --detectOpenHandles --forceExit --coverage",
"test:e2e": "jest --config=jest-e2e.config.js --detectOpenHandles --forceExit --coverage --runInBand",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nestjs/common": "7.6.17",
"@nestjs/core": "7.6.17",
"@nestjs/platform-express": "7.6.17",
"@nestjs/testing": "7.6.17",
"@types/jest": "26.0.23",
"@types/node": "14.17.3",
"@types/reflect-metadata": "0.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"bullmq": "^1.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"hosted-git-info": ">=2.8.9",
"husky": "^7.0.2",
"jest": "26.6.3",
"lint-staged": "11.1.2",
"minimist": ">=1.2.3",
"prettier": "^2.3.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"semantic-release": "^17.4.7",
"sort-package-json": "1.50.0",
"trim-newlines": ">=3.0.1",
"ts-jest": "26.5.6",
"ts-node": "10.0.0",
"tsconfig-paths": "^3.11.0",
"tslint": "6.1.3",
"typescript": "4.4.2",
"ws": ">=7.4.6",
"y18n": ">=4.0.1"
},
"peerDependencies": {
"@nestjs/common": "^6.10.11 || ^7.0.0",
"@nestjs/core": "^6.10.11 || ^7.0.0",
"bullmq": "^1.32.0"
}
}