update to prisma v6.7.0

This commit is contained in:
Aman Varshney
2025-04-30 17:52:46 +05:30
parent f775b8b29a
commit 8c648de5c2
12 changed files with 41 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "server",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"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": "^3.24.2"
},
"devDependencies": {
"tsc-alias": "^1.8.11",
"typescript": "^5.8.2"
}
}