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