-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.61 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@dollarsign/nestjs-amqp",
"version": "0.0.0-development",
"description": "Nestjs AMQP",
"author": "Dollarsign",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index",
"files": [
"dist/**/*",
"*.md"
],
"keywords": [
"nestjs",
"amqp",
"nestjs-amqp"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/dollarsignteam/nestjs-amqp.git"
},
"bugs": "https://github.com/dollarsignteam/nestjs-amqp/issues",
"scripts": {
"format": "prettier --check --write 'src/**/*.ts' 'test/**/*.ts' 'lib/**/*.ts'",
"lint": "eslint --fix --ext .ts '{src,lib,test}/**/*.ts'",
"fix": "tsc --noEmit && yarn format && yarn lint",
"prepare": "husky install",
"commit": "git-cz",
"prebuild": "rimraf dist/*",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"test": "jest --forceExit --detectOpenHandles",
"test:cov": "npm run test -- --verbose --coverage",
"test:watch": "npm run test -- --coverage --watchAll",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@dollarsign/logger": "^1.6.2",
"@dollarsign/utils": "^1.6.4",
"rhea-promise": "^2.1.0"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/cz-commitlint": "^15.0.0",
"@nestjs/cli": "^8.1.2",
"@nestjs/common": "^8.0.11",
"@nestjs/core": "^8.0.11",
"@nestjs/platform-express": "^8.0.11",
"@nestjs/schematics": "^8.0.3",
"@nestjs/testing": "^8.0.11",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commitizen": "^4.2.4",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-typescript-sort-keys": "^2.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "12.1.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"semantic-release": "^18.0.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsc-files": "^1.1.2",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/src/",
"<rootDir>/lib/"
],
"moduleNameMapper": {
"@dollarsign/nestjs-amqp/(.*)": "<rootDir>/lib/$1",
"@dollarsign/nestjs-amqp": "<rootDir>/lib"
}
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}