Skip to content

Commit 7a0eb4b

Browse files
committed
Upgrade frontend dependnecies
Signed-off-by: Cintia Sanchez Garcia <[email protected]>
1 parent bbfe7ba commit 7a0eb4b

File tree

3 files changed

+549
-553
lines changed

3 files changed

+549
-553
lines changed

Diff for: web/eslint.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import js from '@eslint/js';
44
import reactHooks from 'eslint-plugin-react-hooks';
55
import simpleImportSort from 'eslint-plugin-simple-import-sort';
6+
import globals from 'globals';
67
import tseslint from 'typescript-eslint';
7-
import globals from "globals";
88

99
const config = [
1010
js.configs.recommended,
@@ -19,6 +19,7 @@ const config = [
1919
'simple-import-sort': simpleImportSort,
2020
},
2121
rules: {
22+
'@typescript-eslint/no-explicit-any': 'on',
2223
'simple-import-sort/imports': 'error',
2324
'simple-import-sort/exports': 'error',
2425
},

Diff for: web/package.json

+19-18
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"private": true,
55
"type": "module",
66
"dependencies": {
7-
"apexcharts": "^3.49.1",
7+
"apexcharts": "^3.51.0",
88
"classnames": "^2.5.1",
9-
"clo-ui": "https://github.com/cncf/clo-ui.git#v0.3.2",
9+
"clo-ui": "https://github.com/cncf/clo-ui.git#v0.3.3",
1010
"lodash": "^4.17.21",
1111
"moment": "^2.30.1",
1212
"nth-check": "^2.0.1",
@@ -15,39 +15,39 @@
1515
"react-dom": "^18.3.1",
1616
"react-icons": "^5.2.0",
1717
"react-markdown": "^9.0.1",
18-
"react-router-dom": "^6.24.0",
18+
"react-router-dom": "^6.25.1",
1919
"react-syntax-highlighter": "^15.5.0",
2020
"rehype-external-links": "^3.0.0"
2121
},
2222
"devDependencies": {
2323
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
24-
"@eslint/js": "^9.5.0",
25-
"@testing-library/dom": "^10.2.0",
26-
"@testing-library/jest-dom": "^6.4.6",
24+
"@eslint/js": "^9.8.0",
25+
"@testing-library/dom": "^10.4.0",
26+
"@testing-library/jest-dom": "^6.4.8",
2727
"@testing-library/react": "^16.0.0",
2828
"@testing-library/user-event": "^14.5.2",
2929
"@types/jest": "^29.5.12",
30-
"@types/lodash": "^4.17.5",
31-
"@types/node": "^20.14.8",
30+
"@types/lodash": "^4.17.7",
31+
"@types/node": "^20.14.12",
3232
"@types/react": "^18.3.3",
3333
"@types/react-dom": "^18.3.0",
3434
"@types/react-router-dom": "^5.3.2",
3535
"@types/react-syntax-highlighter": "^15.5.13",
36-
"eslint": "^9.5.0",
36+
"eslint": "^9.7.0",
3737
"eslint-config-prettier": "^9.1.0",
38-
"eslint-plugin-prettier": "^5.1.3",
38+
"eslint-plugin-prettier": "^5.2.1",
3939
"eslint-plugin-react-hooks": "^4.6.2",
40-
"eslint-plugin-simple-import-sort": "^12.1.0",
41-
"globals": "^15.6.0",
40+
"eslint-plugin-simple-import-sort": "^12.1.1",
41+
"globals": "^15.8.0",
4242
"jest-fetch-mock": "^3.0.3",
43-
"minimatch": "^9.0.4",
44-
"postcss": "^8.4.38",
45-
"prettier": "^3.3.2",
43+
"minimatch": "^10.0.1",
44+
"postcss": "^8.4.40",
45+
"prettier": "^3.3.3",
4646
"react-scripts": "5.0.1",
47-
"sass": "^1.77.6",
47+
"sass": "^1.77.8",
4848
"shx": "^0.3.4",
49-
"typescript": "^5.5.2",
50-
"typescript-eslint": "^7.14.1"
49+
"typescript": "^5.5.4",
50+
"typescript-eslint": "^7.17.0"
5151
},
5252
"resolutions": {
5353
"react-scripts/**/core-js-pure": "3.37.1",
@@ -67,6 +67,7 @@
6767
"eject": "react-scripts eject",
6868
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
6969
"format:diff": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
70+
"prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
7071
"isready": "yarn format && yarn lint && yarn test --watchAll=false --passWithNoTests --verbose && yarn build",
7172
"lint": "eslint src --max-warnings 0",
7273
"lint:fix": "eslint src --max-warnings 0 --fix",

0 commit comments

Comments
 (0)