first commit

This commit is contained in:
2025-05-08 21:27:29 +05:30
commit 230d5c89f0
343 changed files with 42391 additions and 0 deletions

27
packages/db/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "@repo/db",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"exports": {
"./client": "./src/index.ts",
"./shared" : "./shared/schemas/index.ts"
},
"dependencies": {
"@prisma/client": "^6.7.0",
"prisma-zod-generator": "^0.8.13"
},
"devDependencies": {
"@types/node": "^22.15.17",
"prisma": "^6.7.0",
"tsx": "^4.19.4",
"typescript": "^5.8.2"
}
}