Skip to content

Commit 48beb16

Browse files
committed
update/upgrade dependencies
1 parent 1056d83 commit 48beb16

24 files changed

Lines changed: 2794 additions & 1788 deletions

biome.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
"useNumberNamespace": "error",
3434
"noInferrableTypes": "error",
3535
"noUselessElse": "error"
36+
},
37+
"complexity": {
38+
"noImportantStyles": "off"
3639
}
3740
}
3841
},

eslint.config.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import js from "@eslint/js";
2-
import reactHooks from "eslint-plugin-react-hooks";
2+
import react from "eslint-plugin-react";
33
import reactRefresh from "eslint-plugin-react-refresh";
44
import globals from "globals";
55
import tseslint from "typescript-eslint";
66

77
export default tseslint.config(
8-
{ ignores: ["dist"] },
8+
{
9+
ignores: ["dist/**", "node_modules/**", "public/**", ".tanstack/**", ".proto/**", ".idea/**", ".github/**"],
10+
},
911
{
1012
extends: [js.configs.recommended, ...tseslint.configs.recommended],
1113
files: ["**/*.{ts,tsx}"],
@@ -15,12 +17,11 @@ export default tseslint.config(
1517
globals: globals.browser,
1618
},
1719
plugins: {
18-
"react-hooks": reactHooks,
20+
react,
1921
"react-refresh": reactRefresh,
2022
},
2123
rules: {
22-
...reactHooks.configs.recommended.rules,
23-
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
24+
"react-refresh/only-export-components": "off",
2425
},
2526
},
2627
);

package.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"@tanstack/react-devtools": "^0.9.5",
2121
"@tanstack/react-query": "^5.90.20",
2222
"@tanstack/react-query-devtools": "^5.91.3",
23-
"@tanstack/react-router": "^1.159.4",
24-
"@tanstack/react-router-devtools": "^1.159.4",
25-
"@tanstack/router-plugin": "^1.159.4",
23+
"@tanstack/react-router": "^1.159.5",
24+
"@tanstack/react-router-devtools": "^1.159.5",
25+
"@tanstack/router-plugin": "^1.159.5",
2626
"@yornaath/batshit": "^0.14.0",
2727
"clsx": "^2.1.1",
2828
"leaflet": "^1.9.4",
@@ -41,25 +41,33 @@
4141
"devDependencies": {
4242
"@biomejs/biome": "^2.3.14",
4343
"@eslint/js": "^9.39.2",
44-
"@hey-api/openapi-ts": "^0.80.18",
44+
"@hey-api/openapi-ts": "^0.92.3",
4545
"@tailwindcss/vite": "^4.1.18",
4646
"@tanstack/devtools-vite": "^0.5.1",
4747
"@types/leaflet": "^1.9.21",
4848
"@types/luxon": "^3.7.1",
49-
"@types/node": "^22.19.10",
5049
"@types/react": "^19.2.13",
5150
"@types/react-dom": "^19.2.3",
52-
"@vitejs/plugin-react": "^4.7.0",
51+
"@vitejs/plugin-react": "^5.1.4",
5352
"cross-env": "^10.1.0",
5453
"eslint": "^9.39.2",
55-
"eslint-plugin-react-hooks": "^5.2.0",
56-
"eslint-plugin-react-refresh": "^0.4.26",
57-
"globals": "^16.5.0",
58-
"jsdom": "^27.4.0",
54+
"eslint-plugin-react": "^7.37.5",
55+
"eslint-plugin-react-refresh": "^0.5.0",
56+
"globals": "^17.3.0",
5957
"protobufjs-cli": "^2.0.0",
6058
"typescript": "^5.9.3",
61-
"typescript-eslint": "^8.54.0",
59+
"typescript-eslint": "^8.55.0",
6260
"vite": "^7.3.1",
6361
"vite-tsconfig-paths": "^6.1.0"
62+
},
63+
"pnpm": {
64+
"overrides": {
65+
"glob": "^13.0.1"
66+
},
67+
"peerDependencyRules": {
68+
"allowedVersions": {
69+
"protobufjs": "8"
70+
}
71+
}
6472
}
6573
}

0 commit comments

Comments
 (0)