Merge branch 'main' into copilot/ensure-full-test-coverage

This commit is contained in:
Christian Krakau-Louis
2026-04-07 12:28:35 +02:00
committed by GitHub
20 changed files with 2899 additions and 890 deletions
+9
View File
@@ -13,6 +13,15 @@ const eslintConfig = defineConfig([
"build/**",
"next-env.d.ts",
]),
// Specify explicit React version to avoid eslint-plugin-react calling the
// removed context.getFilename() API when using version: 'detect' with ESLint 10.
{
settings: {
react: {
version: "19",
},
},
},
]);
export default eslintConfig;
+415 -604
View File
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -11,10 +11,10 @@
"test:ci": "jest --coverage --coverageReporters=lcov --passWithNoTests"
},
"dependencies": {
"@tanstack/react-query": "^5.95.0",
"axios": "^1.13.6",
"lucide-react": "^0.577.0",
"next": "16.1.7",
"@tanstack/react-query": "^5.96.2",
"axios": "^1.14.0",
"lucide-react": "^1.7.0",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"zustand": "^5.0.12"
@@ -25,14 +25,14 @@
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"eslint": "^10",
"eslint-config-next": "16.2.2",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"tailwindcss": "^4",
"typescript": "^5"
"typescript": "^6"
}
}