-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.4 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.4 KB
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
{
"name": "typegraphql-nestjs",
"version": "0.8.0",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"scripts": {
"build": "tsc",
"check:type": "tsc --noEmit",
"test": "jest"
},
"peerDependencies": {
"@apollo/gateway": "^2.12.2",
"@apollo/subgraph": "^2.12.2",
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/graphql": "^13.2.3",
"graphql-tag": "^2.12.6",
"type-graphql": "^2.0.0 || >=2.0.0-rc"
},
"dependencies": {
"@graphql-tools/utils": "^10.11.0",
"lodash.merge": "^4.6.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@apollo/gateway": "^2.12.2",
"@apollo/server": "^5.2.0",
"@apollo/subgraph": "^2.12.2",
"@as-integrations/express5": "^1.1.2",
"@nestjs/apollo": "^13.2.3",
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/graphql": "^13.2.3",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/testing": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^25.0.3",
"class-validator": "^0.14.1",
"graphql": "^16.12.0",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.25",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"type-graphql": "^2.0.0-rc.2",
"typescript": "^5.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
],
"**/*.md": [
"prettier --write"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"readmeFilename": "README.md",
"description": "Basic integration of TypeGraphQL in NestJS. Allows to use TypeGraphQL features while integrating with NestJS modules system and dependency injector.",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typegraphql"
},
"repository": {
"type": "git",
"url": "https://github.com/MichalLytek/typegraphql-nestjs.git"
},
"bugs": {
"url": "https://github.com/MichalLytek/typegraphql-nestjs/issues"
},
"keywords": [
"type-graphql",
"nest",
"nestjs",
"graphql"
],
"engines": {
"node": ">= 22.0"
},
"private": true
}