Skip to content

Commit 30b5524

Browse files
authored
fix: Refresh dependencies (#137)
1 parent 07e37f2 commit 30b5524

File tree

7 files changed

+1138
-1528
lines changed

7 files changed

+1138
-1528
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Node.js
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: '16'
17+
node-version: "20"
1818
- name: Install dependencies
1919
run: npm install
2020
- name: Run the tests

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: "16"
18+
node-version: "20"
1919
- name: Install dependencies
2020
run: npm install
2121
- name: Release

package.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "codegen-stackables-webhooks",
3-
"version": "1.0.0",
4-
"description": "GraphQL Code Generator plugin for Stackables webhooks",
5-
"main": "./build/index.js",
6-
"types": "./build/index.d.ts",
7-
"keywords": [
8-
"cloudevents",
9-
"router",
10-
"stackables",
11-
"webhooks"
12-
],
13-
"files": [
14-
"build/*"
15-
],
16-
"scripts": {
17-
"prepack": "tsc",
18-
"test": "jest",
19-
"semantic-release": "semantic-release -b main"
20-
},
21-
"devDependencies": {
22-
"@graphql-tools/load": "^7.3.2",
23-
"@tsconfig/node16": "^1.0.2",
24-
"@types/jest": "^27.0.2",
25-
"@types/node": "^17.0.0",
26-
"axios": "^0.26.0",
27-
"jest": "^27.2.4",
28-
"semantic-release": "^19.0.0",
29-
"ts-jest": "^27.0.5",
30-
"ts-node": "^10.2.1",
31-
"typescript": "^4.4.3"
32-
},
33-
"jest": {
34-
"preset": "ts-jest"
35-
},
36-
"repository": {
37-
"type": "git",
38-
"url": "git+https://github.com/stackables/codegen-stackables-webhooks.git"
39-
},
40-
"author": "",
41-
"license": "MIT",
42-
"bugs": {
43-
"url": "https://github.com/stackables/codegen-stackables-webhooks/issues"
44-
},
45-
"homepage": "https://github.com/stackables/codegen-stackables-webhooks#readme",
46-
"dependencies": {
47-
"@graphql-codegen/plugin-helpers": "^2.1.1",
48-
"change-case-all": "^1.0.14",
49-
"graphql": "^16.0.0",
50-
"graphql-request": "^4.0.0"
51-
}
52-
}
2+
"name": "codegen-stackables-webhooks",
3+
"version": "1.0.0",
4+
"description": "GraphQL Code Generator plugin for Stackables webhooks",
5+
"main": "./build/index.js",
6+
"types": "./build/index.d.ts",
7+
"keywords": [
8+
"cloudevents",
9+
"router",
10+
"stackables",
11+
"webhooks"
12+
],
13+
"files": [
14+
"build/*"
15+
],
16+
"scripts": {
17+
"prepack": "tsc",
18+
"test": "jest",
19+
"semantic-release": "semantic-release -b main"
20+
},
21+
"devDependencies": {
22+
"@graphql-tools/load": "^8.0.1",
23+
"@tsconfig/node16": "^16.1.1",
24+
"@types/jest": "^29.5.12",
25+
"@types/node": "^20.11.16",
26+
"axios": "^1.6.7",
27+
"jest": "^29.7.0",
28+
"semantic-release": "^23.0.0",
29+
"ts-jest": "^29.1.2",
30+
"ts-node": "^10.9.2",
31+
"typescript": "^5.3.3"
32+
},
33+
"jest": {
34+
"preset": "ts-jest"
35+
},
36+
"repository": {
37+
"type": "git",
38+
"url": "git+https://github.com/stackables/codegen-stackables-webhooks.git"
39+
},
40+
"author": "",
41+
"license": "MIT",
42+
"bugs": {
43+
"url": "https://github.com/stackables/codegen-stackables-webhooks/issues"
44+
},
45+
"homepage": "https://github.com/stackables/codegen-stackables-webhooks#readme",
46+
"dependencies": {
47+
"@graphql-codegen/plugin-helpers": "^5.0.1",
48+
"change-case-all": "^1.0.14",
49+
"graphql": "^16.8.1",
50+
"graphql-request": "^6.1.0"
51+
}
52+
}

0 commit comments

Comments
 (0)