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",
|
2024-11-03 08:56:24 +00:00
|
|
|
"@types/node": "22.8.7",
|
2024-10-27 15:42:03 +00:00
|
|
|
"@types/pg": "8.11.10",
|
2024-10-27 16:25:16 +00:00
|
|
|
"@whatwg-node/fetch": "0.9.22",
|
2023-01-24 08:42:24 +00:00
|
|
|
"bcryptjs": "2.4.3",
|
2023-09-04 11:45:18 +00:00
|
|
|
"copyfiles": "2.4.1",
|
2024-02-20 14:22:15 +00:00
|
|
|
"dotenv": "16.4.5",
|
2024-10-22 07:41:15 +00:00
|
|
|
"got": "14.4.3",
|
2024-08-12 09:23:32 +00:00
|
|
|
"graphql": "16.9.0",
|
2024-08-18 12:25:11 +00:00
|
|
|
"p-limit": "6.1.0",
|
2024-10-28 06:52:04 +00:00
|
|
|
"pg-promise": "11.10.1",
|
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-10-28 12:13:58 +00:00
|
|
|
"tslib": "2.8.0",
|
2024-10-28 14:06:11 +00:00
|
|
|
"typescript": "5.6.3",
|
2024-05-09 07:40:55 +00:00
|
|
|
"zod": "3.23.8"
|
2023-07-17 11:14:50 +00:00
|
|
|
},
|
|
|
|
|
"buildOptions": {
|
|
|
|
|
"external": [
|
|
|
|
|
"pg-native"
|
|
|
|
|
]
|
2023-01-18 07:54:47 +00:00
|
|
|
}
|
|
|
|
|
}
|