Files
WooNooW/package.json
Dwindi Ramadhana 91ae4956e0 chore: update build scripts for both SPAs
- build:admin: builds admin-spa
- build:customer: builds customer-spa
- build: builds both admin and customer SPAs
- dev:customer: added dev server for customer-spa
2026-01-03 17:36:50 +07:00

14 lines
476 B
JSON

{
"scripts": {
"dev": "cd admin-spa && npm run dev",
"dev:admin": "cd admin-spa && npm run dev",
"dev:customer": "cd customer-spa && npm run dev",
"build:admin": "cd admin-spa && npm install && npm run build",
"build:customer": "cd customer-spa && npm install && npm run build",
"build": "npm run build:admin && npm run build:customer",
"pack": "node scripts/package-zip.mjs"
},
"dependencies": {
"@radix-ui/react-tooltip": "^1.2.8"
}
}