Vanilla HTML/JS/CSS PWA with Dexie offline-first sync, Hono+SQLite backend, served via nginx reverse-proxy. Two seed goals (no-sugar, no-social-media) for users ray and cer. Local dev runs at https://raycer.test via the shared Traefik proxy. Production deploys to https://raycer.altweb.me on cool2026/personal via docker-compose.coolify.yaml — see deploy/COOLIFY.md.
16 lines
310 B
JSON
16 lines
310 B
JSON
{
|
|
"name": "raycer-backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^2.0.0",
|
|
"better-sqlite3": "^12.9.0",
|
|
"hono": "^4.12.14",
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|