forked from kamilkisiela/graphql-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.1 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
{
"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": "tsc --project tsconfig.json && bob build",
"test": "jest",
"prebuild": "rimraf \"packages/**/dist/\"",
"now-build": "yarn build && (cd website && yarn && yarn build && mv build ../public)",
"action": "ncc build packages/action/src/action.ts --out action --minify --transpile-only",
"bundle": "webpack",
"format": "prettier --config .prettierrc --write \"**/*.{js,json,md,ts,graphql}\"",
"prerelease": "yarn action",
"release": "node ./scripts/release.js",
"release:canary": "npm run release -- canary",
"precommit": "lint-staged"
},
"devDependencies": {
"@types/body-parser": "1.19.1",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "26.0.24",
"@types/node": "14.14.45",
"@types/yargs": "17.0.3",
"@zeit/ncc": "0.22.3",
"axios": "0.21.4",
"bob-the-bundler": "1.5.1",
"graphql": "16.0.0",
"graphql-config": "4.0.1",
"jest": "27.2.2",
"jsesc": "3.0.2",
"lint-staged": "11.0.0",
"lodash": "4.17.21",
"nock": "13.0.11",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"smee-client": "1.2.2",
"strip-ansi": "^6.0.0",
"ts-jest": "27.0.5",
"typescript": "4.2.4"
},
"dependencies": {
"@sentry/node": "6.10.0",
"@sentry/tracing": "6.10.0",
"husky": "4.3.8",
"immer": "9.0.6",
"lerna": "4.0.0",
"probot": "11.3.0",
"shelljs": "0.8.4"
},
"workspaces": [
"packages/*",
"packages/commands/*",
"packages/loaders/*"
],
"lint-staged": {
"*.{js,json,md,ts,graphql}": [
"prettier --write",
"git add"
]
}
}