-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "group9comp308project",
"version": "1.0.0",
"description": "Community Engagement Platform",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm:start:*\"",
"start:auth-service": "cd server/auth-service && npm run dev",
"start:community-service": "cd server/community-service && npm run dev",
"start:business-service": "cd server/business-service && npm run dev",
"start:personalization-service": "cd server/personalization-service && npm run dev",
"start:auth-app": "cd client/auth-app && npm run deploy",
"start:community-app": "cd client/community-app && npm run deploy",
"start:events-app": "cd client/events-app && npm run deploy",
"start:shell-app": "cd client/shell-app && npm run dev",
"install-backend": "npm install --prefix server/auth-service && npm install --prefix server/community-service && npm install --prefix server/business-service && npm install --prefix server/personalization-service",
"install-frontend": "npm install --prefix client/auth-app && npm install --prefix client/community-app && npm install --prefix client/shell-app && npm install --prefix client/events-app",
"install-all": "npm install && npm run install-backend && npm run install-frontend"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}