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.
This commit is contained in:
Julien Calixte
2026-06-26 15:26:20 +01:00
commit 528251f176
40 changed files with 2410 additions and 0 deletions

19
backend/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "photofetch-backend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node --watch src/index.ts",
"start": "node src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^2.0.6",
"hono": "^4.12.27"
},
"devDependencies": {
"@types/node": "^26.0.1",
"typescript": "^6.0.3"
}
}