Fix some errors

This commit is contained in:
2026-01-23 13:17:59 +01:00
parent 960a40715d
commit 497741fe1b
5 changed files with 6602 additions and 6591 deletions

View File

@@ -1,4 +1,4 @@
run: run: stop
docker compose up -d docker compose up -d
stop: stop:

View File

@@ -6,5 +6,4 @@ services:
- "3000:3000" - "3000:3000"
volumes: volumes:
- .:/app - .:/app
- /app/node_modules
command: sh -c "npm install && npm run dev" command: sh -c "npm install && npm run dev"

13065
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,26 +1,28 @@
{ {
"name": "app", "name": "app",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"next": "16.1.4", "next": "16.1.4",
"react": "19.2.3", "react": "19.2.3",
"react-dom": "19.2.3" "react-dom": "19.2.3"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/node": "^20", "@types/json-schema": "^7.0.15",
"@types/react": "^19", "@types/node": "^20",
"@types/react-dom": "^19", "@types/react": "^19",
"eslint": "^9", "@types/react-dom": "^19",
"eslint-config-next": "16.1.4", "eslint": "^9",
"tailwindcss": "^4", "eslint-config-next": "16.1.4",
"typescript": "^5" "tailwindcss": "^4",
} "typescript": "^5"
},
"types": "json-schema"
} }

View File

@@ -1,34 +1,43 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext"], "target": "ES2017",
"allowJs": true, "lib": [
"skipLibCheck": true, "dom",
"strict": true, "dom.iterable",
"noEmit": true, "esnext"
"esModuleInterop": true, ],
"module": "esnext", "allowJs": true,
"moduleResolution": "bundler", "skipLibCheck": true,
"resolveJsonModule": true, "strict": true,
"isolatedModules": true, "noEmit": true,
"jsx": "react-jsx", "esModuleInterop": true,
"incremental": true, "module": "esnext",
"plugins": [ "moduleResolution": "bundler",
{ "resolveJsonModule": true,
"name": "next" "isolatedModules": true,
} "jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
], ],
"paths": { "exclude": [
"@/*": ["./*"] "node_modules"
} ]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
} }