UNPKG

3.05 kBJSONView Raw
1{
2 "name": "@nestjs/graphql",
3 "version": "7.9.9",
4 "description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "scripts": {
8 "prebuild": "rimraf dist",
9 "build": "tsc -p tsconfig.json",
10 "format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
11 "lint": "eslint 'lib/**/*.ts' --fix",
12 "prepublish:npm": "npm run build",
13 "publish:npm": "npm publish --access public",
14 "prepublish:next": "npm run build",
15 "publish:next": "npm publish --access public --tag next",
16 "test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
17 "test:integration:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
18 "prerelease": "npm run build",
19 "release": "release-it"
20 },
21 "devDependencies": {
22 "@apollo/federation": "0.18.1",
23 "@apollo/gateway": "0.17.0",
24 "@commitlint/cli": "11.0.0",
25 "@commitlint/config-angular": "11.0.0",
26 "@nestjs/common": "7.6.12",
27 "@nestjs/core": "7.6.12",
28 "@nestjs/platform-express": "7.6.12",
29 "@nestjs/platform-fastify": "7.6.12",
30 "@nestjs/testing": "7.6.12",
31 "@types/graphql": "14.2.3",
32 "@types/jest": "26.0.20",
33 "@types/node": "12.20.1",
34 "@types/node-fetch": "2.5.8",
35 "@types/normalize-path": "3.0.0",
36 "@typescript-eslint/eslint-plugin": "4.15.1",
37 "@typescript-eslint/parser": "4.15.1",
38 "apollo-server-express": "2.16.1",
39 "apollo-server-fastify": "2.16.1",
40 "apollo-server-testing": "2.16.1",
41 "class-transformer": "0.3.2",
42 "class-validator": "0.13.1",
43 "eslint": "7.20.0",
44 "eslint-config-prettier": "7.2.0",
45 "eslint-plugin-import": "2.22.1",
46 "graphql": "15.4.0",
47 "husky": "5.0.9",
48 "jest": "26.6.3",
49 "lint-staged": "10.5.4",
50 "prettier": "2.2.1",
51 "reflect-metadata": "0.1.13",
52 "release-it": "14.4.0",
53 "rimraf": "3.0.2",
54 "supertest": "6.1.3",
55 "ts-jest": "26.5.1",
56 "ts-morph": "9.1.0",
57 "ts-node": "9.1.1",
58 "typescript": "4.1.5"
59 },
60 "dependencies": {
61 "@graphql-tools/merge": "6.2.7",
62 "@graphql-tools/schema": "6.2.4",
63 "@graphql-tools/utils": "6.2.4",
64 "@nestjs/mapped-types": "0.3.0",
65 "apollo-env": "0.6.5",
66 "apollo-server-core": "2.16.1",
67 "chokidar": "3.5.1",
68 "fast-glob": "3.2.5",
69 "iterall": "1.2.2",
70 "lodash": "4.17.20",
71 "normalize-path": "3.0.0",
72 "tslib": "2.1.0",
73 "uuid": "8.3.2"
74 },
75 "peerDependencies": {
76 "@nestjs/common": "^7.0.0",
77 "@nestjs/core": "^7.0.0",
78 "graphql": "^14.1.1 || ^15.0.0",
79 "reflect-metadata": "^0.1.12"
80 },
81 "optionalDependencies": {
82 "@apollo/gateway": "^0.17.0",
83 "apollo-server-testing": "^2.16.1",
84 "ts-morph": "^9.0.0"
85 },
86 "lint-staged": {
87 "*.ts": [
88 "prettier --write"
89 ]
90 },
91 "husky": {
92 "hooks": {
93 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
94 "pre-commit": "lint-staged"
95 }
96 },
97 "repository": {
98 "type": "git",
99 "url": "https://github.com/nestjs/graphql"
100 }
101}