generated from CS3219-AY2324S1/course-assessment-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1.86 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
31
32
{
"name": "ay2324s1-course-assessment-g37",
"version": "1.0.0",
"description": "[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-24ddc0f5d75046c5622901739e7c5dd533143b0c8e959d652212380cedb1ea36.svg)](https://classroom.github.com/a/6BOvYMwN)\r # AssignmentTemplate",
"main": "index.js",
"scripts": {
"install:front-end": "cd microservices/front-end && npm install",
"install:auth": "cd microservices/auth && npm install",
"install:user-service": "cd microservices/user-service && npm install",
"install:questions-service": "cd microservices/questions-service && npm install",
"install:matching-service": "cd microservices/matching-service && npm install",
"install:history-service": "cd microservices/history-service && npm install",
"install:collaboration-service": "cd microservices/collaboration-service && npm install",
"install-all": "concurrently -c \"red,green,yellow,blue,magenta,cyan,gray\" \"npm:install:*\"",
"dev:front-end": "cd microservices/front-end && npm run dev",
"dev:auth": "cd microservices/auth && npm run dev",
"dev:user-service": "cd microservices/user-service && npm run start",
"dev:questions-service": "cd microservices/questions-service && npm run dev",
"dev:rabbitMQ": "cd microservices/matching-service && npm run start:rabbitMQ",
"dev:matching-service": "cd microservices/matching-service && npm run dev",
"dev:history-service": "cd microservices/history-service && npm run dev",
"dev:collaboration-service": "cd microservices/collaboration-service && npm run start",
"dev:judge0": "cd microservices/judge0-v1.13.0 && npm run start",
"dev-all": "concurrently -c \"red,green,yellow,blue,magenta,cyan,gray\" \"npm:dev:*\""
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.1",
"highlight.js": "^11.9.0"
}
}