Huge bump of versions + husky + fixed DropDown key issue and pointer (#628)

* Bump lint-staged

* Check

* Check

* Added husky

* Check

* Check

* Check

* Check

* Check

* Check

* Check

* Check

* Fix husky

* Used * instead **/* in lint-staged

* Bump tailwindcss and related

* Added @tailwindcss/vite and removed postcss

* Added lint into staged

* Bump @babel/core and updated .prettierignore

* Removed tailwind.config.cjs

* Added ThemeInit

* Added cursor-pointer to Help dropdown

* Bump react-router

* Removed @types/uuid and react-router-dom

* Bump diff2html, prettier, @typescript-eslint/eslint-plugin, @typescript-eslint/parser

* removed vite-plugin-html-config and @babel/core

* removed "@eslint/eslintrc" and "@eslint/js"

* Removed redundant link

* Returned plugins and source to index.css

* Set dark to false in tailwindcss

* Fixed storybook

* Fixed useGetLatestVersion with correct gcTime: 0 option

* Added eslint-plugin-prettier

* Removed spaces

* ClustersList.tsx improved and type fixes for another files

* Repository.tsx improved

* Huge fix of types

* Huge fix of types missed

* Fixed type of SingleValue

* Added cursor pointer
This commit is contained in:
yuri-sakharov
2025-11-29 18:49:51 +02:00
committed by GitHub
parent 1129651e6c
commit 7572f00f7c
65 changed files with 1476 additions and 1893 deletions

View File

@@ -7,7 +7,7 @@
"dependencies": {
"@tanstack/react-query": "^5.90.11",
"compare-versions": "^6.1.1",
"diff2html": "^3.4.46",
"diff2html": "^3.4.52",
"flowbite-react": "^0.12.10",
"highlight.js": "^11.11.1",
"html-react-parser": "^5.2.10",
@@ -17,54 +17,57 @@
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.0",
"react-modern-drawer": "^1.4.0",
"react-router-dom": "^6.9.0",
"react-router": "^7.9.6",
"react-select": "^5.10.2",
"swagger-ui-react": "^5.30.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@storybook/addon-docs": "^10.0.8",
"@storybook/addon-links": "^10.0.8",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/react-vite": "^10.0.8",
"@tailwindcss/vite": "^4.1.17",
"@types/luxon": "^3.7.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-react": "^5.18.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.14",
"autoprefixer": "^10.4.22",
"cypress": "^13.3.0",
"eslint": "^9.39.1",
"eslint-config-enpitech": "^1.0.17",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.0.8",
"flowbite": "^4.0.1",
"globals": "^16.5.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.24",
"prettier": "^3.6.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.1",
"storybook": "10.0.8",
"tailwindcss": "^3.3.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-html-config": "^2.0.2",
"vite-plugin-static-copy": "^3.1.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
"src/*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run prettier:fix"
],
"*.{json,css,md,mdx}": "npm run prettier:fix"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "cd .. && husky",
"pre:commit": "lint-staged",
"test": "echo \"Error: no test specified. Please use 'cypress:run' or 'cypress:open' commands\" && exit 1",
"tsc:check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",