This commit is contained in:
Lucas Tettamanti
2026-01-26 00:13:03 -03:00
parent b1c8a3685c
commit e85afab3e6
6 changed files with 3490 additions and 2 deletions

View File

@@ -7,6 +7,9 @@
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"migrate:up": "dbmate up",
"migrate:down": "dbmate down",
"migrate:redo": "dbmate rollback && dbmate up",
@@ -27,7 +30,9 @@
"zod": "^4.3.4"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"dbmate": "^2.0.0",
"nodemon": "^3.0.3"
"nodemon": "^3.0.3",
"vitest": "^4.0.18"
}
}