forked from dotansimha/graphql-yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.42 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
{
"name": "graphql-yoga-monorepo",
"private": true,
"scripts": {
"prebuild": "rimraf packages/*/dist",
"check": "pnpm -r --filter=!example-deno run check",
"build": "pnpm --filter=@graphql-yoga/graphiql run build && pnpm --filter=@graphql-yoga/render-graphiql run build && pnpm --filter=graphql-yoga run generate-graphiql-html && bob build",
"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",
"release": "pnpm build && changeset publish",
"start:docs": "pnpm --filter=website dev",
"postinstall": "husky install",
"lint": "eslint --ignore-path .gitignore --ext ts,js,tsx,jsx .",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .prettierignore --check .",
"build-website": "pnpm build && cd website && pnpm build",
"changeset": "changeset"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,json,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotansimha/graphql-yoga.git"
},
"keywords": [
"graphql",
"server",
"api",
"graphql-server",
"apollo"
],
"contributors": [
"Johannes Schickling <johannes@graph.cool>",
"Saihajpreet Singh <saihajpreet.singh@gmail.com> (https://github.com/saihaj)",
"Dotan Simha <dotansimha@gmail.com>",
"Arda TANRIKULU <ardatanrikulu@gmail.com>",
"Laurin Quast <laurinquast@googlemail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dotansimha/graphql-yoga/issues"
},
"homepage": "https://github.com/dotansimha/graphql-yoga#readme",
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.20.13",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@theguild/eslint-config": "0.8.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^29.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^29.0.0",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "5.0.1",
"cross-env": "7.0.3",
"eslint": "^8.21.0",
"graphql": "^16.5.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"js-yaml": "4.1.0",
"lint-staged": "^13.0.3",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.2",
"rimraf": "^4.0.0",
"supertest": "^6.1.6",
"ts-jest": "^29.0.0",
"typescript": "4.9.5",
"weak-napi": "2.0.2",
"wrangler": "2.10.0"
},
"pnpm": {
"patchedDependencies": {
"@changesets/assemble-release-plan@5.2.1": "patches/@changesets__assemble-release-plan@5.2.1.patch",
"@graphiql/react@0.13.3": "patches/@graphiql__react@0.13.3.patch"
},
"overrides": {
"graphql": "16.6.0",
"@envelop/core": "3.0.4",
"@changesets/assemble-release-plan": "5.2.1"
}
}
}