forked from kamilkisiela/graphql-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 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
85
{
"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": {
"affected:build": "bob run build",
"affected:test": "bob run test",
"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.0",
"@types/cors": "2.8.6",
"@types/express": "4.17.7",
"@types/jest": "26.0.6",
"@types/node": "13.13.14",
"@types/yargs": "15.0.5",
"@zeit/ncc": "0.22.2",
"axios": "0.19.2",
"bob-the-bundler": "1.0.3-alpha.0",
"graphql": "15.3.0",
"graphql-config": "3.0.3",
"jest": "26.1.0",
"jsesc": "3.0.1",
"lint-staged": "10.2.11",
"lodash": "4.17.19",
"nock": "13.0.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"smee-client": "1.1.0",
"strip-ansi": "6.0.0",
"ts-jest": "26.1.3",
"typescript": "3.9.7"
},
"dependencies": {
"@probot/serverless-lambda": "0.5.0",
"graphql-request": "2.0.0",
"husky": "4.2.5",
"immer": "7.0.5",
"lerna": "3.22.1",
"shelljs": "0.8.4"
},
"workspaces": [
"packages/*",
"packages/commands/*",
"packages/loaders/*",
"packages/graphql-cli/*"
],
"lint-staged": {
"*.{js,json,md,ts,graphql}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">= 10.x"
}
}