mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 13:11:17 +00:00
- Add apps/aris-backend package with Hono server - Add /health endpoint - Add backend-spec.md with design decisions Co-authored-by: Ona <no-reply@ona.com>
20 lines
412 B
JSON
20 lines
412 B
JSON
{
|
|
"name": "@aris/backend",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"test": "bun test src/"
|
|
},
|
|
"dependencies": {
|
|
"@aris/core": "workspace:*",
|
|
"@aris/source-location": "workspace:*",
|
|
"@aris/source-weatherkit": "workspace:*",
|
|
"better-auth": "^1",
|
|
"hono": "^4",
|
|
"postgres": "^3"
|
|
}
|
|
}
|