forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
{
"name": "graphql-tools-monorepo",
"version": "6.0.0",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"private": true,
"scripts": {
"deploy:website": "cd website && yarn deploy",
"ts:transpile": "tsc --project tsconfig.build.json",
"build": "yarn ts:transpile && bob build",
"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",
"test-and-build": "yarn build && yarn test",
"release": "node scripts/release.js",
"release:canary": "node scripts/release.js --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": {
"@types/fs-extra": "9.0.1",
"@types/jest": "25.2.3",
"@types/node": "13.13.9",
"jest": "26.0.1",
"ts-jest": "26.0.0",
"typescript": "3.9.3",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"bob-the-bundler": "1.0.1",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"fs-extra": "9.0.0",
"graphql": "15.0.0",
"lint-staged": "10.2.6",
"nock": "12.0.3",
"husky": "4.2.5",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
]
},
"workspaces": [
"./packages/*",
"./packages/loaders/*",
"./website"
],
"resolutions": {
"graphql": "15.0.0"
}
}