YAS/packages/db/package.json
YetAnotherSuite Dev c7d98523c6
Some checks failed
CI / Quality Check (push) Has been cancelled
init backup
2026-07-23 23:33:50 +02:00

35 lines
898 B
JSON

{
"name": "@yetanother/db",
"private": true,
"type": "module",
"main": "./src/client.ts",
"types": "./src/client.ts",
"scripts": {
"build": "tsc",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf .turbo node_modules prisma/migrations"
},
"dependencies": {
"@prisma/client": "^6.6.0",
"bcryptjs": "^3.0.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/node": "^22.15.0",
"@yetanother/eslint-config": "workspace:*",
"@yetanother/tsconfig": "workspace:*",
"eslint": "^9.25.0",
"prisma": "^6.6.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}