-
Notifications
You must be signed in to change notification settings - Fork 3
chore: update dependencies #522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
fa0f6bc
6899d21
766c280
7e8112e
e767607
ee1af07
0614b4c
b1da848
a083d69
bf87b96
775dfae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| { | ||
| "plugins": ["prettier"], | ||
| "extends": [ | ||
| "4catalyzer", | ||
| "4catalyzer-jest", | ||
|
|
@@ -10,8 +9,14 @@ | |
| "node": true | ||
| }, | ||
| "rules": { | ||
| "prettier/prettier": "error", | ||
| "global-require": "off", | ||
| "import/no-dynamic-require": "off" | ||
| "import/no-dynamic-require": "off", | ||
| "no-empty-function": "off", | ||
| "@typescript-eslint/no-empty-function": [ | ||
| "error", | ||
| { | ||
| "allow": ["constructors"] | ||
| } | ||
| ] | ||
|
Comment on lines
+14
to
+20
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a typical config to allow abstract class constructor definitions, I believe |
||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| nodeLinker: node-modules |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| { | ||
| "name": "@4c/graphql-node-resource", | ||
| "version": "5.1.0", | ||
| "packageManager": "[email protected]", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using this and corepack to ensure the proper yarn version is used. This is a typical setup, I believe. Open to suggestions, though |
||
| "main": "lib/index.js", | ||
| "repository": { | ||
| "type": "git", | ||
|
|
@@ -40,51 +41,48 @@ | |
| "conventionalCommits": true | ||
| }, | ||
| "dependencies": { | ||
| "@types/lodash": "^4.14.178", | ||
| "@types/node": "^17.0.8", | ||
| "@types/node-fetch": "^2.5.12", | ||
| "@types/pluralize": "^0.0.29", | ||
| "dataloader": "^2.0.0", | ||
| "express": "^4.17.3", | ||
| "form-data": "^4.0.4", | ||
| "@types/lodash": "^4.17.21", | ||
| "@types/node": "^25.0.3", | ||
| "@types/node-fetch": "^2.6.13", | ||
| "@types/pluralize": "^0.0.33", | ||
| "dataloader": "^2.2.3", | ||
| "express": "^5.2.1", | ||
| "form-data": "^4.0.5", | ||
| "lodash": "^4.17.21", | ||
| "node-fetch": "^2.6.7", | ||
| "pluralize": "^8.0.0", | ||
| "utility-types": "^3.10.0" | ||
| "utility-types": "^3.11.0" | ||
| }, | ||
| "peerDependencies": { | ||
| "graphql": ">=14.0.0", | ||
| "graphql-relay": ">=0.7.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@4c/babel-preset": "^9.1.0", | ||
| "@4c/cli": "^3.0.1", | ||
| "@4c/babel-preset": "^10.2.1", | ||
| "@4c/cli": "^4.0.4", | ||
| "@4c/jest-preset": "^1.8.1", | ||
| "@4c/prettier-config": "^1.1.0", | ||
| "@4c/tsconfig": "^0.4.1", | ||
| "@babel/preset-typescript": "^7.18.6", | ||
| "@types/jest": "^27.5.2", | ||
| "@typescript-eslint/eslint-plugin": "^5.33.1", | ||
| "@typescript-eslint/parser": "^5.33.1", | ||
| "codecov": "^3.8.3", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use codecov's GHA (https://github.com/codecov/codecov-action) instead |
||
| "@babel/preset-typescript": "^7.28.5", | ||
| "@types/jest": "^30.0.0", | ||
| "@typescript-eslint/eslint-plugin": "^8.51.0", | ||
| "@typescript-eslint/parser": "^8.51.0", | ||
| "eslint-config-4catalyzer": "^1.5.0", | ||
| "eslint-config-4catalyzer-jest": "^2.3.0", | ||
| "eslint-config-4catalyzer-typescript": "^3.3.0", | ||
| "eslint-config-prettier": "^10.1.8", | ||
| "eslint-plugin-import": "^2.26.0", | ||
| "eslint-plugin-jest": "^25.7.0", | ||
| "eslint-plugin-prettier": "^5.5.4", | ||
| "eslint-plugin-import": "^2.32.0", | ||
| "eslint-plugin-jest": "^29.12.1", | ||
| "fetch-mock": "^9.11.0", | ||
| "graphql": "^16.6.0", | ||
| "graphql-relay": "^0.10.0", | ||
| "hookem": "^2.0.1", | ||
| "jest": "^27.5.1", | ||
| "lint-staged": "^12.5.0", | ||
| "prettier": "^2.7.1", | ||
| "typescript": "^4.7.4" | ||
| "graphql": "^16.12.0", | ||
| "graphql-relay": "^0.10.2", | ||
| "hookem": "^3.0.4", | ||
| "jest": "^30.2.0", | ||
| "lint-staged": "^16.2.7", | ||
| "typescript": "^5.9.3" | ||
| }, | ||
| "engines": { | ||
| "node": ">=v12.0.0" | ||
| "node": ">=v20.0.0" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/4Catalyzer/graphql-node-resource/issues" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed to fully defer to
4c cli's pedantic library for linting/formatting