console/packages/migrations/package.json
renovate[bot] a71a1a3e0d
chore(deps): update dependency dotenv to v16.4.1 (#3879)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 13:56:00 +02:00

42 lines
1.1 KiB
JSON

{
"name": "@hive/migrations",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"private": true,
"files": [
"src",
"tsconfig.json"
],
"scripts": {
"build": "tsx ../../scripts/runify.ts",
"db:create": "node tools/create-db.mjs",
"db:init": "pnpm db:create && pnpm migration:run",
"db:migrator": "node --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts",
"migration:run": "pnpm db:migrator up",
"test": "TS_NODE_TRANSPILE_ONLY=true node --experimental-specifier-resolution=node --loader ts-node/esm ./test/index.ts"
},
"devDependencies": {
"@graphql-hive/core": "workspace:*",
"@types/bcryptjs": "2.4.6",
"@types/node": "18.18.13",
"@types/pg": "8.11.0",
"@whatwg-node/fetch": "0.9.15",
"bcryptjs": "2.4.3",
"copyfiles": "2.4.1",
"dotenv": "16.4.1",
"got": "12.6.1",
"p-limit": "4.0.0",
"pg-promise": "11.5.4",
"slonik": "30.4.4",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3",
"zod": "3.22.4"
},
"buildOptions": {
"external": [
"pg-native"
]
}
}