Skip to content

Commit

Permalink
chore(dependencies):
Browse files Browse the repository at this point in the history
 - upgrade dependencies
  • Loading branch information
thib3113 committed May 20, 2024
1 parent c474892 commit c81da40
Show file tree
Hide file tree
Showing 6 changed files with 851 additions and 722 deletions.
22 changes: 0 additions & 22 deletions .eslintrc.js

This file was deleted.

26 changes: 26 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
const eslintConfigPrettier = require('eslint-config-prettier');
const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended');
const typescriptParser = require('@typescript-eslint/parser')

module.exports = [
eslintPluginPrettierRecommended,
eslintConfigPrettier,
{
languageOptions: {
parser: typescriptParser,
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
ignores: ['*.hbs', '*.md', '*.html'],
rules: {
camelcase: 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
indent: 'off', //prettier take it in charge
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/ban-ts-ignore': 'off'
}
}
];
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node-lts": "20.1.0",
"@types/jest": "29.5.11",
"@types/node": "20.10.5",
"@typescript-eslint/parser": "6.16.0",
"eslint": "8.56.0",
"@tsconfig/node-lts": "20.1.3",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@typescript-eslint/parser": "8.0.0-alpha.14",
"eslint": "9.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-prettier": "5.1.3",
"ncp": "^2.0.0",
"prettier": "3.1.1",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"typedoc": "0.25.4",
"typescript": "5.3.3"
"typedoc": "0.25.13",
"typescript": "5.4.5"
}
}
14 changes: 7 additions & 7 deletions packages/lovebox-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:ci": "npm run jest -- --ci",
"test:ci:coverage": "npm run jest -- --ci --coverage",
"lint": "eslint -f unix \"src/**\"",
"lint": "eslint",
"lint:fix": "npm lint -- --fix",
"ci:eslint": "npm run lint -- -f json -o ./coverage/eslint-report.json"
},
Expand Down Expand Up @@ -56,23 +56,23 @@
],
"license": "ISC",
"dependencies": {
"axios": "^1.6.3",
"axios": "^1.7.0",
"debug": "^4.3.4",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0"
"graphql-request": "^7.0.1"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/debug": "4.1.12",
"dotenv": "16.3.1",
"esbuild": "0.19.10",
"dotenv": "16.4.5",
"esbuild": "0.21.3",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"rimraf": "5.0.7",
"ts-jest": "29.1.2",
"ts-node": "10.9.2"
},
"funding": [
Expand Down
18 changes: 9 additions & 9 deletions packages/node-red-lovebox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"jest": "node node_modules/jest/bin/jest.js",
"test:ci": "npm run jest -- --ci",
"test:ci:coverage": "npm run jest -- --ci --coverage",
"lint": "eslint -f unix \"src/**/*.ts\"",
"lint": "eslint",
"lint:fix": "npm lint -- --fix",
"ci:eslint": "npm run lint -- -f json -o ./coverage/eslint-report.json"
},
Expand Down Expand Up @@ -64,19 +64,19 @@
"name": "Thibaut severac"
},
"devDependencies": {
"@node-red/registry": "^3.1.3",
"@node-red/registry": "^3.1.9",
"@types/mime-types": "^2.1.4",
"@types/node-red": "^1.3.4",
"@types/node-red__registry": "^1.3.9",
"@types/node-red": "^1.3.5",
"@types/node-red__registry": "^1.3.10",
"canvas": "^2.11.2",
"esbuild": "0.19.10",
"inquirer": "^9.2.12",
"esbuild": "0.21.3",
"inquirer": "^9.2.22",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"multi-integer-range": "^5.2.0",
"node-red": "^3.1.3",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"node-red": "^3.1.9",
"rimraf": "5.0.7",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"yargs": "^17.7.2"
}
Expand Down
Loading

0 comments on commit c81da40

Please sign in to comment.