forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.04 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
{
"name": "graphql-tools-monorepo",
"version": "6.2.3",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"private": true,
"scripts": {
"postinstall": "patch-package",
"predeploy:website": "yarn build:api-docs",
"deploy:website": "cd website && yarn deploy",
"ts:transpile": "concurrently \"tsc --project tsconfig.build.json\" \"tsc --project tsconfig.build.es5.json\"",
"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 alpha) || 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",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"devDependencies": {
"patch-package": "6.4.5",
"@babel/core": "7.13.8",
"@babel/preset-env": "7.13.9",
"@babel/preset-typescript": "7.13.0",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@changesets/cli": "2.14.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.32",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"@ardatan/bob-the-bundler": "1.2.2",
"babel-jest": "26.6.3",
"concurrently": "6.0.0",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"graphql": "15.5.0",
"graphql-helix": "1.2.3",
"graphql-subscriptions": "1.2.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nock": "13.0.10",
"prettier": "2.2.1",
"ts-jest": "26.5.3",
"typedoc": "0.20.30",
"typedoc-plugin-markdown": "3.6.0",
"typescript": "4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
]
},
"workspaces": {
"packages": [
"./packages/*",
"./packages/loaders/*",
"./website"
],
"nohoist": [
"@graphql-tools/website/@docusaurus/*"
]
},
"resolutions": {
"graphql": "15.5.0",
"@changesets/apply-release-plan": "4.0.0"
}
}