forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.61 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
107
{
"name": "graphql-tools-monorepo",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
"type": "git",
"url": "git+https://github.com/ardatan/graphql-tools.git"
},
"homepage": "https://github.com/ardatan/graphql-tools#readme",
"bugs": {
"url": "https://github.com/ardatan/graphql-tools/issues"
},
"private": true,
"workspaces": [
"packages/*",
"packages/loaders/*",
"packages/executors/*",
"website",
"benchmark/*"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"scripts": {
"build": "bob build",
"build:api-docs": "ts-node --transpileOnly --compiler-options='{\"module\":\"commonjs\"}' scripts/build-api-docs",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts . --output-file eslint_report.json --format json",
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \".bob\"",
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts .",
"postbuild": "ts-node --compiler-options='{\"module\":\"commonjs\"}' scripts/postbuild.ts",
"postinstall": "patch-package && husky install",
"prerelease": "yarn build",
"prettier": "prettier --cache --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --cache --ignore-path .prettierignore --check .",
"release": "changeset publish",
"test": "jest --no-watchman",
"test-fed-compat": "ts-node --transpileOnly --compiler-options='{\"module\":\"commonjs\"}' scripts/fetch-federation-tests && yarn test federation-compat",
"test:leaks": "cross-env \"LEAK_TEST=1\" jest --no-watchman --detectOpenHandles --detectLeaks --logHeapUsage",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "7.25.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.25.9",
"@babel/preset-typescript": "7.25.9",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@theguild/prettier-config": "2.0.7",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "20.17.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"bob-the-bundler": "7.0.1",
"chalk": "4.1.2",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-standard": "5.0.0",
"globby": "11.1.0",
"graphql": "16.9.0",
"graphql-subscriptions": "2.0.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"patch-package": "8.0.0",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "3.16.0",
"typedoc-plugin-rename-defaults": "0.7.0",
"typescript": "5.4.5",
"weak-napi": "2.0.2"
},
"resolutions": {
"esbuild": "^0.24.0",
"graphql": "16.9.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,json}": [
"prettier --write"
]
},
"yarn": {
"args": [
"ignore-engines"
]
}
}