forked from kamilkisiela/graphql-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.84 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
{
"name": "graphql-inspector",
"private": true,
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
"keywords": [
"graphql",
"graphql-inspector",
"tools",
"cli",
"api",
"ui"
],
"sideEffects": false,
"author": {
"name": "Kamil Kisiela",
"email": "[email protected]",
"url": "https://github.com/kamilkisiela"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-inspector"
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"build:website": "(cd website && yarn install && yarn build)",
"build:github": "yarn workspace @graphql-inspector/core build && yarn workspace @graphql-inspector/github build && yarn workspace @graphql-inspector/actions build",
"build:netlify": "yarn build:github && yarn netlify-lambda build functions && ./scripts/fix.js && yarn build:website",
"format": "prettier --config .prettierrc --write \"**/*.{js,json,md,ts,graphql}\"",
"release": "lerna publish --exact --force-publish=\"*\"",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact",
"precommit": "lint-staged"
},
"devDependencies": {
"lint-staged": "8.1.0",
"prettier": "1.15.3"
},
"dependencies": {
"@probot/serverless-lambda": "0.2.0",
"babel-loader": "8.0.4",
"husky": "1.2.0",
"immer": "1.10.0",
"lerna": "3.6.0",
"netlify-lambda": "1.4.2",
"shelljs": "0.8.3"
},
"workspaces": [
"packages/core",
"packages/cli",
"packages/api",
"packages/ui",
"packages/load",
"packages/github",
"packages/github-actions"
],
"lint-staged": {
"*.{js,json,md,ts,graphql}": [
"prettier --write",
"git add"
]
},
"resoultions": {
"babel-loader": "8.0.4"
}
}