Compare commits

..

3 Commits

Author SHA1 Message Date
fdaaf61a45 bump all deps 2025-12-12 15:26:43 +01:00
09bca96591 update tsconfig 2025-12-08 15:54:08 +01:00
4b83668abe update lock file 2025-12-08 15:54:03 +01:00
3 changed files with 894 additions and 396 deletions

1258
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,10 +12,10 @@
"dependencies": {
"@tanstack/react-query": "^5.90.12",
"iron-session": "^8.0.4",
"next": "16.0.7",
"next": "16.0.10",
"qr-scanner": "^1.4.2",
"react": "^19.2.1",
"react-dom": "^19.2.1"
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
@@ -24,7 +24,7 @@
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"eslint-config-next": "16.0.10",
"tailwindcss": "^4",
"typescript": "^5"
}

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -11,7 +15,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -19,9 +23,19 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}