28 lines
741 B
JSON
28 lines
741 B
JSON
{
|
|
"name": "@typebot.io/prisma",
|
|
"license": "AGPL-3.0-or-later",
|
|
"version": "0.1.0",
|
|
"main": "./index.ts",
|
|
"types": "./index.ts",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "tsx scripts/studio.ts",
|
|
"db:generate": "tsx scripts/db-generate.ts",
|
|
"db:push": "tsx scripts/db-push.ts",
|
|
"migrate:deploy": "tsx scripts/migrate-deploy.ts",
|
|
"migrate:dev": "prisma migrate dev --create-only --schema postgresql/schema.prisma",
|
|
"db:migrate": "pnpm migrate:deploy"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "4.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.16.3",
|
|
"dotenv": "16.0.3",
|
|
"prisma": "4.13.0",
|
|
"@typebot.io/tsconfig": "workspace:*",
|
|
"tsx": "3.12.7",
|
|
"typescript": "5.0.4"
|
|
}
|
|
}
|