db-backup-tool/package.json

21 lines
578 B
JSON

{
"name": "db-backup-tool",
"version": "0.1.0",
"author": {
"name": "Khairul Hidayat",
"email": "khai@rul.sh",
"url": "https://github.com/khairul169"
},
"private": false,
"license": "MIT",
"scripts": {
"dev": "concurrently \"cd backend && npm run dev:compose\" \"cd frontend && npm run dev\"",
"build:frontend": "cd frontend && VITE_BACKEND_URL=/api npm run build",
"build:backend": "cd backend && npm run build",
"build": "npm run build:frontend && npm run build:backend"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}