forked from algoan/nestjs-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.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
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
{
"name": "@algoan/nestjs-components",
"version": "1.0.0",
"description": "NestJS components made by Algoan",
"main": "index.js",
"scripts": {
"postinstall": "lerna link convert",
"clean:all": "rimraf ./**/dist ./**/node_modules ./**/coverage",
"test": "npm run test:all",
"build": "npm run build:all",
"test:all": "lerna run test",
"test:cov:all": "lerna run test:cov",
"build:all": "lerna run build",
"publish": "lerna publish --yes",
"commit": "git-cz",
"prettier": "prettier --write 'packages/*/{src,test}/**/*.ts'",
"lint": "tslint ./packages/*/src/*.ts{,x} ./packages/*/src/**/*.ts{,x} --project tsconfig.json -e \"**/*.test.ts\"",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nodejs",
"typescript",
"nestjs",
"algoan",
"yelloan"
],
"repository": "https://github.com/algoan/nestjs-components",
"bugs": {
"url": "https://github.com/algoan/nestjs-components/issues"
},
"homepage": "https://github.com/algoan/nestjs-components",
"author": "algoan",
"license": "ISC",
"devDependencies": {
"@algoan/nestjs-google-pubsub-microservice": "file:../google-pubsub-microservice",
"@algoan/pubsub": "^5.0.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nestjs/common": "^9.0.8",
"@nestjs/core": "^9.0.8",
"@nestjs/microservices": "^9.0.8",
"@nestjs/platform-express": "^9.0.8",
"@nestjs/testing": "^9.0.8",
"@types/chai": "^4.3.1",
"@types/content-range": "^1.1.1",
"@types/express": "^4.17.13",
"@types/format-link-header": "^2.1.0",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/parse-link-header": "^2.0.0",
"@types/supertest": "^2.0.12",
"@yelloan/tslint": "^0.3.0",
"chai": "^4.3.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"delay": "^5.0.0",
"express": "^4.18.1",
"google-pubsub-emulator": "^5.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"parse-link-header": "^2.0.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.ts": [
"prettier --list-different",
"tslint --project tsconfig.json -e \"**/*.test.ts\""
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@algoan/nestjs-custom-decorators": "file:packages/custom-decorators",
"@algoan/nestjs-google-pubsub-client": "file:packages/google-pubsub-client",
"@algoan/nestjs-google-pubsub-microservice": "file:packages/google-pubsub-microservice",
"@algoan/nestjs-http-exception-filter": "file:packages/http-exception-filter",
"@algoan/nestjs-logging-interceptor": "file:packages/logging-interceptor",
"@algoan/nestjs-pagination": "file:packages/pagination"
}
}