typegraphql-nestjs
Version:
Basic integration of TypeGraphQL in NestJS. Allows to use TypeGraphQL features while integrating with NestJS modules system and dependency injector.
96 lines (95 loc) • 2.44 kB
JSON
{
"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"
}
}