-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "test-ssh-action",
"main": "dist/index.js",
"dependencies": {
"@actions/core": "^1.4.0",
"graphql": "^15.5.1",
"graphql-request": "^3.4.0"
},
"scripts": {
"test": "yarn jest",
"build": "yarn tsc --outDir dist && graphql-code-generator --config codegen.yml && yarn ncc build"
},
"keywords": [
"actions",
"ssh",
"test"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@graphql-codegen/cli": "1.21.7",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-graphql-request": "^3.2.5",
"@graphql-codegen/typescript-operations": "^1.18.4",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vercel/ncc": "^0.29.1",
"eslint": "^7.32.0",
"graphql-codegen": "^0.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node-dev": "^1.0.0",
"typescript": "^4.3.5"
}
}