Files
photofetch/package.json
Julien Calixte 528251f176 chore: initial scaffold
Vite + Vue 3 + DaisyUI SPA (project picker + Slack avatar member grid) with a
TypeScript/Node (Hono) backend proxying Napta + Slack, SQLite avatar cache via
node:sqlite, and docker-compose for Coolify deploy.
2026-06-26 15:26:20 +01:00

32 lines
691 B
JSON

{
"name": "photofetch",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"daisyui": "^5.5.23",
"vue": "^3.5.38"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^24.13.2",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/tsconfig": "^0.9.1",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"tailwindcss": "^4.3.1",
"typescript": "~6.0.2",
"vite": "^8.1.0",
"vue-tsc": "^3.3.5"
}
}