mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
43 lines
1.1 KiB
JSON
43 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": "WATCH=0 tsup-node --config ../../configs/tsup/dev.config.node.ts ./test/root.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@graphql-hive/core": "workspace:*",
|
|
"@hive/service-common": "workspace:*",
|
|
"@types/bcryptjs": "2.4.6",
|
|
"@types/node": "20.12.8",
|
|
"@types/pg": "8.11.6",
|
|
"@whatwg-node/fetch": "0.9.17",
|
|
"bcryptjs": "2.4.3",
|
|
"copyfiles": "2.4.1",
|
|
"dotenv": "16.4.5",
|
|
"got": "14.2.1",
|
|
"p-limit": "4.0.0",
|
|
"pg-promise": "11.6.0",
|
|
"slonik": "30.4.4",
|
|
"ts-node": "10.9.2",
|
|
"tslib": "2.6.2",
|
|
"typescript": "5.4.5",
|
|
"zod": "3.23.6"
|
|
},
|
|
"buildOptions": {
|
|
"external": [
|
|
"pg-native"
|
|
]
|
|
}
|
|
}
|