UNPKG

@nestjs/graphql

Version:

Nest - modern, fast, powerful node.js web framework (@graphql)

130 lines (129 loc) 3.8 kB
{ "name": "@nestjs/graphql", "version": "9.0.5", "description": "Nest - modern, fast, powerful node.js web framework (@graphql)", "author": "Kamil Mysliwiec", "license": "MIT", "scripts": { "prebuild": "rimraf dist", "build": "tsc -p tsconfig.json", "format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write", "lint": "eslint 'lib/**/*.ts' --fix", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test:integration": "jest --config ./tests/jest-e2e.json --runInBand", "test:integration:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch", "prerelease": "npm run build", "release": "release-it" }, "devDependencies": { "@apollo/federation": "0.33.0", "@apollo/gateway": "0.42.0", "@commitlint/cli": "13.2.0", "@commitlint/config-angular": "13.2.0", "@nestjs/common": "8.0.7", "@nestjs/core": "8.0.7", "@nestjs/platform-express": "8.0.7", "@nestjs/platform-fastify": "8.0.7", "@nestjs/testing": "8.0.7", "@types/graphql": "14.5.0", "@types/jest": "26.0.24", "@types/node": "16.6.1", "@types/node-fetch": "3.0.2", "@types/normalize-path": "3.0.0", "@types/ws": "8.2.0", "@typescript-eslint/eslint-plugin": "4.32.0", "@typescript-eslint/parser": "4.32.0", "apollo-cache-inmemory": "1.6.6", "apollo-client": "2.6.10", "apollo-link-ws": "1.0.20", "apollo-server-core": "3.3.0", "apollo-server-express": "3.3.0", "apollo-server-fastify": "3.3.0", "class-transformer": "0.4.0", "class-validator": "0.13.1", "eslint": "7.32.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-import": "2.24.2", "graphql": "15.6.0", "graphql-subscriptions": "1.2.1", "husky": "7.0.2", "jest": "27.2.2", "lint-staged": "11.1.2", "prettier": "2.4.1", "reflect-metadata": "0.1.13", "release-it": "14.11.6", "rimraf": "3.0.2", "rxjs": "7.3.0", "supertest": "6.1.6", "ts-jest": "27.0.4", "ts-morph": "12.0.0", "ts-node": "10.2.1", "typescript": "4.4.3" }, "dependencies": { "@graphql-tools/merge": "6.2.5", "@graphql-tools/schema": "7.1.5", "@graphql-tools/utils": "7.10.0", "@nestjs/mapped-types": "1.0.0", "chokidar": "3.5.2", "fast-glob": "3.2.7", "graphql-ws": "5.5.0", "iterall": "1.3.0", "lodash": "4.17.21", "normalize-path": "3.0.0", "subscriptions-transport-ws": "0.9.19", "tslib": "2.3.1", "uuid": "8.3.2", "ws": "8.2.2" }, "peerDependencies": { "@apollo/federation": "^0.26.0 || ^0.27.0 || ^0.29.0 || ^0.33.0", "@apollo/gateway": "^0.29.0 || ^0.32.0 || ^0.33.0 || ^0.35.0 || ^0.38.0 || ^0.42.0", "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0", "apollo-server-core": "^3.0.0", "apollo-server-express": "^3.1.2", "apollo-server-fastify": "^3.1.2", "graphql": "^15.5.1", "reflect-metadata": "^0.1.13", "ts-morph": "^11.0.3 || ^12.0.0" }, "peerDependenciesMeta": { "@apollo/federation": { "optional": true }, "@apollo/gateway": { "optional": true }, "apollo-server-core": { "optional": true }, "apollo-server-express": { "optional": true }, "apollo-server-fastify": { "optional": true }, "ts-morph": { "optional": true } }, "lint-staged": { "*.ts": [ "prettier --write" ] }, "husky": { "hooks": { "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "repository": { "type": "git", "url": "https://github.com/nestjs/graphql" } }