forked from algoan/nestjs-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.85 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
{
"name": "@algoan/nestjs-components",
"version": "1.0.0",
"description": "NestJS components made by Algoan",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"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": "eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts --ignore-pattern \"**/*.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/eslint-config": "^2.1.1",
"@apollo/gateway": "^2.8.2",
"@apollo/server": "^4.10.4",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@nestjs/apollo": "^12.2.0",
"@nestjs/common": "^9.4.3",
"@nestjs/core": "^9.4.2",
"@nestjs/graphql": "^12.2.0",
"@nestjs/microservices": "^9.4.3",
"@nestjs/platform-express": "^9.4.3",
"@nestjs/testing": "^9.4.3",
"@types/chai": "^4.3.10",
"@types/content-range": "^1.1.1",
"@types/express": "^4.17.21",
"@types/format-link-header": "^2.1.2",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.202",
"@types/parse-link-header": "^2.0.3",
"@types/supertest": "^2.0.16",
"chai": "^4.3.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"express": "^4.18.2",
"graphql": "^16.9.0",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lerna": "^8.1.2",
"lint-staged": "^15.2.0",
"parse-link-header": "^2.0.0",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"supertest": "^6.3.3",
"ts-jest": "^28.0.7",
"ts-morph": "^21.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
},
"lint-staged": {
"**/*.ts": [
"prettier --list-different",
"eslint --ignore-pattern \"**/*.test.ts\" --ignore-pattern \"**/helpers.ts\""
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@algoan/nestjs-gql-exception-filter": "file:packages/gql-exception-filter",
"@algoan/nestjs-gql-logging-interceptor": "file:packages/gql-logging-interceptor"
}
}