Update frontend dashboard and health service

This commit is contained in:
2025-11-28 02:23:41 +01:00
parent 6b73ae043d
commit e26b426c2e
15 changed files with 2309 additions and 662 deletions

View File

@@ -4,21 +4,28 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint"
"lint": "eslint ."
},
"type": "module",
"dependencies": {
"next": "15.5.6",
"react": "18.3.1",
"react-dom": "18.3.1"
"@tailwindcss/postcss": "^4.1.17",
"next": "^16.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "22.9.4",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.1",
"eslint": "9.39.1",
"eslint-config-next": "15.5.6",
"typescript": "5.7.3"
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.5",
"globals": "^16.5.0",
"postcss": "^8.4.49",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
}
}