Files
anonfunc f6c35df9f3 fix: adapt frontend to dep updates (Vuetify 4, TS 6, ESLint 10, Vite 8)
- tsconfig: drop TS6-deprecated baseUrl; moduleResolution Node -> Bundler
- eslint: migrate .eslintrc.cjs to flat config (eslint.config.mjs);
  add vue-eslint-parser, globals, @eslint/js; drop --ext from lint scripts
- vuetify 4: theme.global.name.value = x -> theme.change(x)
- drop unused watch import; rename unused status arg; remove
  required: true from prop that has a default
2026-04-19 13:31:20 +02:00

53 lines
1.5 KiB
JSON

{
"name": "alhp-web",
"version": "0.0.0",
"scripts": {
"generate-api-types": "yarn openapi-typescript ../openapi_alhp.yaml --output src/generated/alhp.ts",
"prebuild": "npm run generate-api-types",
"dev": "node --no-warnings ./node_modules/.bin/vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fontsource/roboto": "^5.2.10",
"@mdi/font": "^7.4.47",
"fork-awesome": "^1.2.0",
"openapi-fetch": "^0.17.0",
"pinia": "^3.0.4",
"roboto-fontface": "^0.10.0",
"vue": "^3.5.32",
"vuetify": "^4.0.5"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@eslint/js": "^10.0.1",
"@testing-library/vue": "^8.1.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"typescript": "^6.0.3",
"unplugin-fonts": "^2.0.0",
"unplugin-vue-components": "^32.0.0",
"vite": "^8.0.8",
"vite-plugin-vuetify": "^2.1.3",
"vitest": "^4.1.4",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.7"
},
"packageManager": "yarn@4.14.1"
}