Files
darroyo a58b203b16
CI / test (push) Failing after 12m1s
Add package-lock.json and fix TypeScript build errors
- web/frontend/package.json: remove invalid @nuxtjs/tailwindcss (Nuxt-only package)
- web/frontend/src/router/index.ts: prefix unused 'from' param with _
- web/frontend/src/views/ApiKeys.vue: remove unused 'Check' import
- .gitignore: add *.tsbuildinfo, vite.config.js, vite.config.d.ts
- web/frontend/package-lock.json: generated via npm install (required for CI npm ci)
2026-07-30 14:26:59 -04:00

38 lines
949 B
JSON

{
"name": "llamalink-admin",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix"
},
"dependencies": {
"vue": "^3.5.0",
"vue-router": "^4.5.0",
"pinia": "^2.3.0",
"axios": "^1.7.0",
"zod": "^3.23.0",
"@vueuse/core": "^12.0.0",
"chart.js": "^4.4.0",
"vue-chartjs": "^5.3.0",
"lucide-vue-next": "^0.460.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"vite": "^6.0.0",
"vue-tsc": "^2.2.0",
"typescript": "~5.6.0",
"tailwindcss": "^3.4.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-plugin-vue": "^9.0.0"
}
}