Kin: personal relationships app — server (cadence/due/migrations) + Expo Android app
Some checks failed
Build & Release APK / build (push) Failing after 13s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-09 00:49:45 -07:00
commit ac0b82e6a0
101 changed files with 11534 additions and 0 deletions

15
server/package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "kin-server",
"version": "1.0.0",
"description": "Kin — personal relationships CRM: contacts, interactions, cadence over Postgres",
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "bun --watch run src/index.ts",
"start": "bun run src/index.ts"
},
"dependencies": {
"hono": "^4.6.14",
"postgres": "^3.4.5"
}
}