forked from MichalLytek/typegraphql-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.95 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
{
"name": "typegraphql-nestjs",
"version": "0.2.5",
"author": {
"name": "Michał Lytek",
"url": "https://github.com/MichalLytek"
},
"scripts": {
"build": "tsc",
"check:type": "tsc --noEmit",
"test": "jest"
},
"peerDependencies": {
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/graphql": "^7.6.0",
"type-graphql": "^1.0.0"
},
"dependencies": {
"tslib": "^2.0.1"
},
"devDependencies": {
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/graphql": "^7.6.0",
"@nestjs/platform-fastify": "^7.4.2",
"@nestjs/testing": "^7.4.2",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"apollo-server-fastify": "^2.16.1",
"class-validator": "^0.12.2",
"graphql": "^15.3.0",
"graphql-tools": "^6.0.18",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"type-graphql": "^1.0.0",
"typescript": "^4.0.2"
},
"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": ">= 10.3"
},
"private": true
}