@educrib/database
Version:
Common database project for Educrib Ecosystem
38 lines (37 loc) • 877 B
JSON
{
"name": "@educrib/database",
"version": "0.0.21",
"description": "Common database project for Educrib Ecosystem",
"repository": "https://github.com/educrib-platform/educrib-database.git",
"scripts": {
"db:migrate": "npx prisma migrate",
"db:push": "npx prisma push",
"postinstall": "npx prisma generate",
"release": "npm publish --access public"
},
"keywords": [
"Educrib",
"Prisma",
"Supabase",
"PostgreSQL"
],
"author": "Ajith Mathew",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.9.0",
"prisma": "^5.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@prisma/client": "^5.5.2",
"prisma": "^5.5.2"
},
"main": "client/index.js",
"types": "client/index.d.ts",
"files": [
"client/index.js",
"client/index.d.ts",
"schema.prisma"
]
}