Files
sta/package.json

32 lines
817 B
JSON
Raw Normal View History

{
"name": "frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"generate:api": "curl -s http://localhost:3100/specs > openapi.yaml && openapi-typescript openapi.yaml -o src/api/schema.ts && rm openapi.yaml",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
2026-05-14 21:41:34 +02:00
"openapi-fetch": "^0.15.2",
"vue": "^3.5.34"
},
"devDependencies": {
2026-05-14 21:41:34 +02:00
"@types/node": "^24.12.4",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/tsconfig": "^0.8.1",
2026-05-14 21:41:34 +02:00
"openapi-typescript": "^7.13.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"typescript": "~5.9.3",
2026-05-14 21:41:34 +02:00
"vite": "^7.3.3",
"vue-tsc": "^3.2.9"
}
}