mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 00:39:39 +02:00
New lightweight server replacing NestJS for server-side compute: - RRULE expansion (next occurrence, validation, DoS protection) - Reminders (CRUD with reminder time calculation) - Admin (GDPR user data counts + deletion) - JWT auth middleware + service key auth for admin - Port 3019, ~10 packages vs ~50 for NestJS Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
494 B
JSON
22 lines
494 B
JSON
{
|
|
"name": "@todo/server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Todo server-side compute (Hono + Bun) — RRULE, reminders, admin",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"type-check": "bun x tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"drizzle-orm": "^0.45.1",
|
|
"hono": "^4.7.0",
|
|
"postgres": "^3.4.5",
|
|
"rrule": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|