mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-04-28 08:39:33 +07:00
21 lines
578 B
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"
|
|
}
|
|
}
|