index.html linked /kds/manifest.json, which never existed (404). Replaced with vite-plugin-pwa, matching the pattern used by every other app, plus icons that were entirely missing before.
26 lines
593 B
JSON
26 lines
593 B
JSON
{
|
|
"name": "kds-frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.17.9",
|
|
"lucide-react": "^0.395.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.21.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.47",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.11",
|
|
"vite-plugin-pwa": "^1.3.0"
|
|
}
|
|
}
|