mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
31 lines
856 B
JSON
31 lines
856 B
JSON
{
|
|
"name": "@better-t/server",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"dev:bun": "bun run --hot src/index.ts",
|
|
"db:local": "turso dev --db-file local.db",
|
|
"db:push": "drizzle-kit push",
|
|
"db:studio": "drizzle-kit studio",
|
|
"check-types": "tsc --noEmit",
|
|
"wrangler:dev": "wrangler dev",
|
|
"wrangler:deploy": "wrangler deploy --minify",
|
|
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.13.8",
|
|
"@hono/trpc-server": "^0.3.4",
|
|
"@trpc/server": "^11.0.0-rc.748",
|
|
"dotenv": "^16.4.7",
|
|
"hono": "^4.7.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.19.2",
|
|
"@types/node": "^22.13.4",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|