2023-01-18 07:54:47 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hive/migrations",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"private": true,
|
2023-02-05 01:50:31 +00:00
|
|
|
"files": [
|
|
|
|
|
"src",
|
|
|
|
|
"tsconfig.json"
|
|
|
|
|
],
|
2023-01-18 07:54:47 +00:00
|
|
|
"scripts": {
|
2023-07-17 11:14:50 +00:00
|
|
|
"build": "tsx ../../scripts/runify.ts",
|
2023-01-18 07:54:47 +00:00
|
|
|
"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",
|
2023-02-28 07:52:37 +00:00
|
|
|
"migration:run": "pnpm db:migrator up",
|
2024-04-07 08:57:03 +00:00
|
|
|
"test": "WATCH=0 tsup-node --config ../../configs/tsup/dev.config.node.ts ./test/root.ts"
|
2023-01-18 07:54:47 +00:00
|
|
|
},
|
2023-09-04 11:45:18 +00:00
|
|
|
"devDependencies": {
|
2023-05-31 10:16:26 +00:00
|
|
|
"@graphql-hive/core": "workspace:*",
|
2024-04-07 08:57:03 +00:00
|
|
|
"@hive/service-common": "workspace:*",
|
2023-11-07 06:18:05 +00:00
|
|
|
"@types/bcryptjs": "2.4.6",
|
2025-01-09 09:49:30 +00:00
|
|
|
"@types/node": "22.10.5",
|
2024-10-27 15:42:03 +00:00
|
|
|
"@types/pg": "8.11.10",
|
2025-11-24 10:04:22 +00:00
|
|
|
"@whatwg-node/fetch": "0.10.13",
|
2023-01-24 08:42:24 +00:00
|
|
|
"bcryptjs": "2.4.3",
|
2023-09-04 11:45:18 +00:00
|
|
|
"copyfiles": "2.4.1",
|
2025-01-03 08:59:56 +00:00
|
|
|
"date-fns": "4.1.0",
|
2024-12-25 13:17:32 +00:00
|
|
|
"dotenv": "16.4.7",
|
2025-04-09 14:39:50 +00:00
|
|
|
"got": "14.4.7",
|
2024-08-12 09:23:32 +00:00
|
|
|
"graphql": "16.9.0",
|
2025-01-09 05:57:41 +00:00
|
|
|
"p-limit": "6.2.0",
|
2024-11-17 11:42:58 +00:00
|
|
|
"pg-promise": "11.10.2",
|
2023-09-04 11:45:18 +00:00
|
|
|
"slonik": "30.4.4",
|
2023-12-10 13:38:54 +00:00
|
|
|
"ts-node": "10.9.2",
|
2024-11-17 10:57:43 +00:00
|
|
|
"tslib": "2.8.1",
|
2025-01-09 07:02:14 +00:00
|
|
|
"typescript": "5.7.3",
|
2025-09-14 13:16:15 +00:00
|
|
|
"zod": "3.25.76"
|
2023-07-17 11:14:50 +00:00
|
|
|
},
|
|
|
|
|
"buildOptions": {
|
|
|
|
|
"external": [
|
|
|
|
|
"pg-native"
|
|
|
|
|
]
|
2023-01-18 07:54:47 +00:00
|
|
|
}
|
|
|
|
|
}
|