mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
24 lines
466 B
Handlebars
24 lines
466 B
Handlebars
{
|
|
"name": "server",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"check-types": "tsc -b",
|
|
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^17.2.1",
|
|
"zod": "^4.0.2"
|
|
},
|
|
{{#if (eq dbSetup 'supabase')}}
|
|
"trustedDependencies": [
|
|
"supabase"
|
|
],
|
|
{{/if}}
|
|
"devDependencies": {
|
|
"tsdown": "^0.14.1",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|