-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "apollo-schema-check-action",
"description": "A GitHub Action to run a schema check with Apollo Studio and post the results as a comment on a Pull Request",
"version": "2.1.0",
"author": "Ian Sutherland <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iansu/apollo-schema-check-action"
},
"main": "build/index.js",
"private": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "ts-node-dev --no-notify -- src/index.ts",
"build": "NODE_ENV=production rollup -c",
"build:dev": "rollup -c",
"test": "jest",
"clean": "rimraf build",
"clean:modules": "rimraf node_modules",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"precommit": "lint-staged"
},
"keywords": [
"actions",
"github",
"apollo",
"graphql",
"schema",
"check",
"javascript",
"typescript"
],
"lint-staged": {
"*.{ts,js}": [
"eslint"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/action": "^3.18.0",
"debug": "^4.3.3",
"graphql": "^16.0.1",
"graphql-request": "^3.7.0",
"iso8601-duration": "^1.3.0",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"@types/jest-when": "^2.7.3",
"@types/node": "^16.11.11",
"eslint": "^7.32.0",
"eslint-config-neo": "^0.6.2",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-when": "^3.4.2",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"ts-jest": "^27.1.0",
"ts-node-dev": "1.1.8",
"typescript": "^4.5.2"
}
}