๐Ÿ“ฆ nestjs / graphql

๐Ÿ“„ package.json ยท 89 lines
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{
  "name": "@nestjs/graphql-workspace",
  "version": "0.0.0",
  "private": true,
  "description": "Nest - modern, fast, powerful node.js web framework. GraphQL monorepo",
  "author": "Kamil Mysliwiec",
  "license": "MIT",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "tsc -b -v packages",
    "changelog": "lerna-changelog",
    "clean": "tsc -b --clean packages",
    "format": "prettier packages/**/*.ts --ignore-path ./.prettierignore --write",
    "lint": "eslint 'packages/**/*.ts' --fix",
    "prepublish:npm": "yarn build && yarn changelog | pbcopy",
    "publish:npm": "lerna publish",
    "prepublish:next": "yarn build",
    "publish:next": "lerna publish --dist-tag next",
    "test:e2e": "lerna run test:e2e --parallel",
    "test:e2e:dev": "lerna run test:e2e:dev --parallel",
    "test:e2e:apollo": "lerna run test:e2e --scope @nestjs/apollo --stream",
    "test:e2e:graphql": "lerna run test:e2e --scope @nestjs/graphql --stream",
    "test:e2e:mercurius": "lerna run test:e2e --scope @nestjs/mercurius --stream",
    "prepare": "husky"
  },
  "resolutions": {
    "graphql": "16.12.0"
  },
  "devDependencies": {
    "@commitlint/cli": "20.2.0",
    "@commitlint/config-angular": "20.2.0",
    "@eslint/js": "9.39.2",
    "@types/graphql": "14.5.0",
    "@types/jest": "30.0.0",
    "@types/node": "24.10.4",
    "@types/node-fetch": "3.0.3",
    "@types/normalize-path": "3.0.2",
    "@types/supertest": "6.0.3",
    "@types/ws": "8.18.1",
    "@typescript-eslint/eslint-plugin": "8.50.1",
    "@typescript-eslint/parser": "8.50.1",
    "class-transformer": "0.5.1",
    "class-validator": "0.14.3",
    "eslint": "9.39.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-prettier": "5.5.4",
    "graphql": "16.12.0",
    "graphql-subscriptions": "3.0.0",
    "husky": "9.1.7",
    "jest": "30.0.5",
    "lerna": "9.0.3",
    "lerna-changelog": "2.2.0",
    "lint-staged": "16.2.7",
    "prettier": "3.7.4",
    "prettierv2": "npm:prettier@2.8.8",
    "reflect-metadata": "0.2.2",
    "release-it": "19.2.2",
    "rimraf": "6.1.2",
    "rxjs": "7.8.2",
    "supertest": "7.1.4",
    "ts-jest": "29.4.6",
    "ts-node": "10.9.2",
    "typescript": "5.9.3",
    "typescript-eslint": "8.50.1"
  },
  "changelog": {
    "labels": {
      "feature": "Features",
      "bug": "Bug fixes",
      "enhancement": "Enhancements",
      "docs": "Docs",
      "dependencies": "Dependencies"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nestjs/graphql"
  }
}