console/packages/migrations/package.json
Jonathan Brennan ca69b1c59f
update node to 24.14.1 and @types/node to 24.12.2 to address Aikido i… (#7946)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
2026-04-07 11:26:02 +02:00

45 lines
1.1 KiB
JSON

{
"name": "@hive/migrations",
"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": "tsx src/index.ts",
"migration:run": "pnpm db:migrator up",
"test": "WATCH=0 tsup-node --config ../../configs/tsup/dev.config.node.ts ./test/root.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@graphql-hive/core": "workspace:*",
"@hive/postgres": "workspace:*",
"@hive/service-common": "workspace:*",
"@types/bcryptjs": "2.4.6",
"@types/node": "24.12.2",
"@types/pg": "8.11.10",
"@whatwg-node/fetch": "0.10.13",
"bcryptjs": "2.4.3",
"copyfiles": "2.4.1",
"date-fns": "4.1.0",
"dotenv": "16.4.7",
"got": "14.4.7",
"graphql": "16.9.0",
"p-limit": "6.2.0",
"pg-promise": "11.10.2",
"tslib": "2.8.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"zod": "3.25.76"
},
"buildOptions": {
"external": [
"pg-native"
]
}
}