-
Notifications
You must be signed in to change notification settings - Fork 572
/
package.json
106 lines (106 loc) · 3.68 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "graphql-yoga-monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/dotansimha/graphql-yoga.git"
},
"homepage": "https://github.com/dotansimha/graphql-yoga#readme",
"bugs": {
"url": "https://github.com/dotansimha/graphql-yoga/issues"
},
"contributors": [
"Johannes Schickling <[email protected]>",
"Saihajpreet Singh <[email protected]> (https://github.com/saihaj)",
"Dotan Simha <[email protected]>",
"Arda TANRIKULU <[email protected]>",
"Laurin Quast <[email protected]>"
],
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.1.3"
},
"keywords": [
"graphql",
"server",
"api",
"graphql-server",
"apollo"
],
"scripts": {
"build": "pnpm --filter=@graphql-yoga/graphiql run build && pnpm --filter=@graphql-yoga/render-graphiql run build && pnpm --filter=graphql-yoga run generate-graphiql-html&& pnpm --filter=graphql-yoga run inject-version && bob build",
"build-website": "pnpm build && cd website && pnpm build",
"changeset": "changeset",
"check": "pnpm -r run check",
"lint": "eslint --ignore-path .eslintignore --ext ts,js,tsx,jsx .",
"postchangeset": "pnpm install --no-frozen-lockfile",
"postinstall": "husky install",
"prebuild": "rimraf packages/*/dist",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .prettierignore --check .",
"release": "pnpm build && changeset publish",
"start:docs": "pnpm --filter=website dev",
"test": "jest --detectOpenHandles",
"test:integration": "cross-env INTEGRATION_TEST=true jest --forceExit",
"test:leaks": "cross-env LEAKS_TEST=true pnpm run test --detectLeaks --logHeapUsage && cross-env LEAKS_TEST=true pnpm run test:integration --detectLeaks --logHeapUsage"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/plugin-proposal-decorators": "7.22.3",
"@babel/plugin-transform-class-properties": "7.24.7",
"@babel/preset-env": "7.22.4",
"@babel/preset-typescript": "7.24.7",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.26.2",
"@theguild/eslint-config": "0.11.0",
"@theguild/prettier-config": "2.0.7",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^29.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^29.0.0",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "7.0.1",
"cross-env": "7.0.3",
"eslint": "^8.44.0",
"graphql": "^16.5.0",
"husky": "9.1.5",
"jest": "^29.0.0",
"js-yaml": "4.1.0",
"lint-staged": "^15.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.0.0",
"typescript": "5.5.4",
"weak-napi": "2.0.2",
"wrangler": "3.57.1"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,yaml,md,json,html,mdx}": [
"prettier --write"
]
},
"pnpm": {
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]",
"@graphiql/[email protected]": "patches/@[email protected]"
},
"overrides": {
"graphql": "16.8.1",
"@envelop/core": "5.0.1",
"@changesets/assemble-release-plan": "5.2.1",
"@types/react": "18.2.55"
}
}
}