21 lines
1.1 KiB
JSON
21 lines
1.1 KiB
JSON
{
|
|
"name": "caninoiran-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,yellow\" -n \"backend,store,admin,open\" \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:admin\" \"node scripts/open-browsers.js\"",
|
|
"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"
|
|
}
|
|
}
|