canina/package.json

21 lines
1.1 KiB
JSON

{
"name": "caninairan-workspace",
"version": "1.0.0",
"private": true,
"scripts": {
"install:all": "npm install && cd backend && npm install && cd ../frontend/application && npm install && cd ../admin-panel && npm install",
"dev:backend": "cd backend && npm run start:dev",
"dev:frontend": "cd frontend/application && npm run dev",
"dev:admin": "cd frontend/admin-panel && npm run dev",
"dev": "concurrently -c \"blue,magenta,green\" -n \"backend,store,admin\" \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:admin\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend/application && npm run build",
"build:admin": "cd frontend/admin-panel && npm run build",
"build": "npm run build:backend && npm run build:frontend && npm run build:admin",
"start": "concurrently -c \"blue,magenta,green\" -n \"backend,store,admin\" \"cd backend && npm run start:prod\" \"cd frontend/application && npm run start\" \"cd frontend/admin-panel && npm run preview\""
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}