mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-01-06 04:32:37 +00:00
25 lines
538 B
JSON
25 lines
538 B
JSON
{
|
|
"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",
|
|
"with-env": "dotenv -e ../../.env --"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "5.20.0",
|
|
"dotenv-cli": "^7.4.2",
|
|
"prisma": "^5.20.0"
|
|
}
|
|
}
|