-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 755 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "prisma-custom-schema-table",
"version": "1.0.0",
"description": "Vorsteh Queue example using Prisma with prisma-client provider and PostgreSQL (TypeScript generation) with a custom schema and table name.",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm with-env tsx src/index.ts",
"prisma:generate": "prisma generate",
"db:push": "prisma db push",
"with-env": "dotenv -e .env --"
},
"dependencies": {
"@prisma/adapter-pg": "^6.19.0",
"@prisma/client": "^6.19.0",
"@vorsteh-queue/adapter-prisma": "workspace:*",
"@vorsteh-queue/core": "workspace:*"
},
"devDependencies": {
"dotenv-cli": "11.0.0",
"prisma": "^6.19.0",
"tsx": "4.20.6",
"typescript": "5.9.3"
}
}