forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.06 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
{
"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",
"ts:transpile": "tsc --project tsconfig.build.json",
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \".bob\"",
"build": "yarn ts:transpile && bob build",
"build:api-docs": "node scripts/build-api-docs.js",
"lint": "eslint --ext .ts .",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\"",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{ts,tsx,graphql,yml}\"",
"test": "jest --no-watchman --forceExit",
"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.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@changesets/cli": "2.17.0",
"@types/debug": "4.1.7",
"@types/jest": "27.0.2",
"@types/node": "14.17.27",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"babel-jest": "27.3.0",
"bob-the-bundler": "1.5.1",
"chalk": "4.1.2",
"concurrently": "6.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"globby": "11.0.4",
"graphql": "15.6.1",
"graphql-helix": "1.8.3",
"graphql-subscriptions": "1.2.1",
"husky": "7.0.2",
"jest": "27.3.0",
"lint-staged": "11.2.3",
"nock": "13.1.3",
"patch-package": "6.4.7",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"typedoc": "0.21.9",
"typedoc-plugin-markdown": "3.10.4",
"typescript": "4.4.4"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
]
},
"workspaces": {
"packages": [
"./packages/*",
"./packages/loaders/*",
"./website",
"./benchmark/*"
],
"nohoist": [
"@graphql-tools/website/@docusaurus/*"
]
},
"resolutions": {
"graphql": "15.6.1",
"esbuild": "^0.13.0",
"@changesets/apply-release-plan": "5.0.1"
}
}