mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
45 lines
1.1 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|