link-stack/apps/bridge-migrations/package.json

26 lines
636 B
JSON
Raw Normal View History

2024-08-07 16:05:26 +02:00
{
"name": "@link-stack/bridge-migrations",
2025-02-20 10:56:31 +01:00
"version": "3.1.0",
2024-08-07 16:05:26 +02:00
"type": "module",
"scripts": {
"migrate:up:all": "tsx migrate.ts up:all",
"migrate:up:one": "tsx migrate.ts up:one",
"migrate:down:all": "tsx migrate.ts down:all",
"migrate:down:one": "tsx migrate.ts down:one"
},
"dependencies": {
"@link-stack/logger": "*",
2024-12-13 13:20:37 +01:00
"dotenv": "^16.4.7",
2025-03-24 11:52:38 +01:00
"kysely": "0.27.6",
"pg": "^8.14.1",
2025-02-20 10:56:31 +01:00
"tsx": "^4.19.3"
2024-08-07 16:05:26 +02:00
},
"devDependencies": {
"@types/node": "^22",
2025-01-26 12:24:57 +01:00
"@types/pg": "^8.11.11",
2024-08-07 16:05:26 +02:00
"@link-stack/eslint-config": "*",
"@link-stack/typescript-config": "*",
"typescript": "^5"
}
}