init monorepo

This commit is contained in:
aric jean
2026-03-23 07:09:31 +08:00
parent 9f0c2e7c61
commit 16219ec7f1
657 changed files with 124939 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "@nest-pure/database",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"migrate:create": "node-pg-migrate create",
"migrate:up": "node --env-file=../../.env ./node_modules/.bin/node-pg-migrate up",
"migrate:down": "node --env-file=../../.env ./node_modules/.bin/node-pg-migrate down",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"dependencies": {
"node-pg-migrate": "^8.0.4",
"pg": "^8.20.0"
},
"devDependencies": {
"@types/pg": "^8.20.0",
"dotenv-cli": "^11.0.0",
"typescript": "^5.9.3"
}
}