updated dependencies

This commit is contained in:
Altair-sh
2026-09-13 22:21:05 +02:00
parent 8b556ac5cb
commit 656bc318d6
4 changed files with 5550 additions and 303 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig, globalIgnores } from 'eslint/config'
import nextCoreWebVitals from 'eslint-config-next/core-web-vitals'
import nextTypescript from 'eslint-config-next/typescript'
export default defineConfig([
globalIgnores(['.next/**', 'node_modules/**', 'next-env.d.ts']),
nextCoreWebVitals,
nextTypescript,
])
+5501 -274
View File
File diff suppressed because it is too large Load Diff
+10 -5
View File
@@ -6,21 +6,26 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint": "eslint",
"format": "npx prettier src --write"
},
"dependencies": {
"ag-grid-react": "^33",
"ag-grid-react": "^36",
"bootstrap": "^5",
"next": "^15",
"next": "^16",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@types/node": "^22",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16",
"prettier": "^3",
"typescript": "^5"
"typescript": "^6"
},
"allowScripts": {
"unrs-resolver": false
}
}
+30 -24
View File
@@ -1,27 +1,33 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"]
}