boring.tools-poc/apps/api/package.json
Lars Hampe e64d9ec31d
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m9s
feat(api): add user routes
2024-09-28 21:08:04 +02:00

19 lines
526 B
JSON

{
"name": "@boring.tools/api",
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "bun build --entrypoints ./src/index.ts --outdir ../../build/api --target bun --splitting --sourcemap=linked",
"test": "bun test --preload ./src/index.ts"
},
"dependencies": {
"@boring.tools/database": "workspace:*",
"@boring.tools/schema": "workspace:*",
"@hono/clerk-auth": "^2.0.0",
"@hono/zod-openapi": "^0.16.2",
"hono": "^4.6.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}