Add backup/restore npm scripts to package.json

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
nmemmert
2026-07-13 08:05:42 -04:00
parent eb066bc8cc
commit 6bbe045ea6
+3 -1
View File
@@ -12,7 +12,9 @@
"start": "NODE_ENV=production node server/index.js", "start": "NODE_ENV=production node server/index.js",
"test": "vitest", "test": "vitest",
"test:run": "vitest run", "test:run": "vitest run",
"coverage": "vitest run --coverage" "coverage": "vitest run --coverage",
"backup": "bash scripts/backup-data.sh",
"restore": "bash scripts/restore-data.sh"
}, },
"dependencies": { "dependencies": {
"bcryptjs": "^3.0.3", "bcryptjs": "^3.0.3",