forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.98 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
{
"name": "graphql-tools-monorepo",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"private": true,
"scripts": {
"postinstall": "patch-package && husky install",
"predeploy:website": "yarn build:api-docs",
"deploy:website": "cd website && yarn deploy",
"ts:check": "tsc --noEmit",
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \".bob\"",
"build": "bob build",
"build:api-docs": "ts-node --compiler-options='{\"module\":\"commonjs\"}' scripts/build-api-docs",
"lint": "eslint --ext .ts .",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .prettierignore --check .",
"test": "jest --no-watchman --detectOpenHandles --logHeapUsage",
"prerelease": "yarn build",
"prerelease-canary": "yarn build",
"release": "changeset publish",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag $NPM_TAG) || echo Skipping Canary..."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ardatan/graphql-tools.git"
},
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"bugs": {
"url": "https://github.com/ardatan/graphql-tools/issues"
},
"homepage": "https://github.com/ardatan/graphql-tools#readme",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@changesets/cli": "2.21.1",
"@types/debug": "4.1.7",
"@types/jest": "28.1.3",
"@types/node": "16.11.42",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"babel-jest": "28.1.2",
"bob-the-bundler": "2.0.0",
"chalk": "4.1.2",
"concurrently": "7.2.2",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.3",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"globby": "11.1.0",
"graphql": "16.5.0",
"graphql-subscriptions": "2.0.0",
"husky": "8.0.1",
"jest": "28.1.2",
"lint-staged": "13.0.3",
"patch-package": "6.4.7",
"prettier": "2.7.1",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"typedoc": "0.22.15",
"typedoc-plugin-markdown": "3.11.14",
"typescript": "4.7.4",
"weak-napi": "2.0.2"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,json}": [
"prettier --write"
]
},
"workspaces": [
"./packages/*",
"./packages/loaders/*",
"./website",
"./benchmark/*"
],
"resolutions": {
"graphql": "16.5.0",
"esbuild": "^0.14.0",
"@changesets/apply-release-plan": "6.0.0"
},
"yarn": {
"args": [
"ignore-engines"
]
}
}