forked from int128/hide-comment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"private": true,
"main": "lib/src/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"graphql-codegen": "graphql-codegen --config graphql-codegen.yaml",
"check": "yarn graphql-codegen && yarn format && yarn lint && yarn test"
},
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0",
"graphql": "16.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.3.1",
"@graphql-codegen/import-types-preset": "2.1.9",
"@graphql-codegen/typescript": "2.4.2",
"@graphql-codegen/typescript-operations": "2.2.2",
"@octokit/graphql-schema": "10.73.0",
"@types/jest": "27.4.0",
"@types/node": "16.11.19",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"@vercel/ncc": "0.33.1",
"eslint": "8.7.0",
"eslint-plugin-jest": "25.7.0",
"jest": "27.4.7",
"jest-circus": "27.4.6",
"js-yaml": "4.1.0",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
}
}