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

25 lines
605 B
JSON
Raw Normal View History

2024-08-07 16:05:26 +02:00
{
"name": "@link-stack/bridge-migrations",
2024-08-28 10:28:59 +02:00
"version": "2.2.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": {
"dotenv": "^16.4.5",
"kysely": "0.26.1",
2024-09-27 11:22:45 +02:00
"pg": "^8.13.0",
"tsx": "^4.19.1"
2024-08-07 16:05:26 +02:00
},
"devDependencies": {
"@types/node": "^22",
2024-09-27 11:22:45 +02:00
"@types/pg": "^8.11.10",
2024-08-07 16:05:26 +02:00
"@link-stack/eslint-config": "*",
"@link-stack/typescript-config": "*",
"typescript": "^5"
}
}