-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 941 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "gloogle",
"version": "1.0.0",
"description": "Gloogle, the best tech empire ever",
"type": "module",
"scripts": {
"install:all": "npm install && npm run install:services",
"install:services": "concurrently \"cd backend && npm install\" \"cd gloogle-auth && npm install\" \"cd gloogle-docs && npm install\" \"cd gloogle-mail && npm install\" \"cd gloogle-calendar && npm install\"",
"start": "concurrently \"npm run start:backend\" \"npm run start:docs\" \"npm run start:mail\" \"npm run start:calendar\" \"npm run start:auth\"",
"start:backend": "cd backend && npm start",
"start:docs": "cd gloogle-docs && npm run dev",
"start:mail": "cd gloogle-mail && npm run dev",
"start:calendar": "cd gloogle-calendar && npm run dev",
"start:auth": "cd gloogle-auth && npm run dev"
},
"author": "Darko Bozhinovski",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
}
}