Files
Minikura/packages/db/package.json
T

29 lines
689 B
JSON
Raw Normal View History

2024-09-21 13:28:02 +07:00
{
2026-02-13 15:52:13 +07:00
"name": "@minikura/db",
"module": "src/index.ts",
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"generate": "prisma generate",
"studio": "bun with-env prisma studio",
"push": "bun with-env prisma db push",
"reset": "bun with-env prisma migrate reset --force",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
"devDependencies": {
2026-08-13 01:57:43 +07:00
"@types/bun": "^1.3.14",
"@types/pg": "^8.21.0"
2026-02-13 15:52:13 +07:00
},
"peerDependencies": {
2026-08-13 01:57:43 +07:00
"typescript": "^7.0.2"
2026-02-13 15:52:13 +07:00
},
"dependencies": {
2026-08-13 01:57:43 +07:00
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "7.10.0",
2026-02-13 15:52:13 +07:00
"dotenv-cli": "^11.0.0",
2026-08-13 01:57:43 +07:00
"pg": "^8.23.0",
"prisma": "^7.9.1"
2026-02-13 15:52:13 +07:00
}
2024-09-21 13:28:02 +07:00
}