-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"private": true,
"workspaces": [
"frontend",
"services/question-service",
"services/user-service",
"services/matching-service",
"services/collaboration-service",
"services/history-service"
],
"scripts": {
"start": "concurrently \"npm run start:question\" \"npm run start:history\" \"npm run start:user\" \"npm run start:gateway\" \"npm run start:frontend\"",
"start:frontend": "cd ./frontend && npm start",
"start:question": "cd ./services/question-service && npm start",
"start:matching": "cd ./services/matching-service && npm start",
"start:user": "cd ./services/user-service && npm start",
"start:collab": "cd ./services/collaboration-service && npm start",
"start:gateway": "cd ./services/api-gateway && npm start",
"start:history": "cd ./services/history-service && npm start"
},
"devDependencies": {
"concurrently": "^9.0.1"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-fileupload": "^1.5.1"
}
}