-
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) · 739 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 739 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": "drizzle-custom-schema-table",
"version": "1.0.0",
"description": "Advanced Vorsteh Queue example using Drizzle ORM with postgres.js and custom schema and table names.",
"type": "module",
"private": true,
"scripts": {
"dev": "pnpm with-env tsx src/index.ts",
"db:push": "pnpm with-env drizzle-kit push",
"db:migrate": "pnpm with-env drizzle-kit migrate",
"with-env": "dotenv -e .env --"
},
"dependencies": {
"@vorsteh-queue/adapter-drizzle": "workspace:*",
"@vorsteh-queue/core": "workspace:*",
"drizzle-orm": "^0.44.7",
"postgres": "^3.4.7"
},
"devDependencies": {
"dotenv-cli": "11.0.0",
"drizzle-kit": "^0.31.6",
"tsx": "4.20.6",
"typescript": "5.9.3"
}
}