- 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
14 lines
476 B
JSON
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"
|
|
}
|
|
} |