-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.91 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "cs3219-project-ay2223s1-g60",
"version": "1.0.0",
"description": "This is a template repository for CS3219 project.",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"redis": "redis-server",
"user-svc": "cd user-service && npm run dev",
"i-user-svc": "cd user-service && npm i",
"match-svc": "cd matching-service && npm run dev",
"i-match-svc": "cd matching-service && npm i",
"comm-svc": "cd communication-service && npm run dev",
"i-comm-svc": "cd communication-service && npm i",
"coll-svc": "cd collaboration-service && npm run dev",
"i-coll-svc": "cd collaboration-service && npm i",
"qns-svc": "cd question-service && npm run dev",
"i-qns-svc": "cd question-service && npm i",
"hist-svc": "cd history-service && npm run dev",
"i-hist-svc": "cd history-service && npm i",
"frontend": "cd frontend && npm run start",
"i-frontend": "cd frontend && npm i",
"dev": "concurrently --kill-others 'npm run redis' 'npm run user-svc' 'npm run match-svc' 'npm run comm-svc' 'npm run coll-svc' 'npm run qns-svc' 'npm run hist-svc' 'npm run frontend'",
"install-dep": "concurrently 'npm run i-user-svc' 'npm run i-match-svc' 'npm run i-comm-svc' 'npm run i-coll-svc' 'npm run i-qns-svc' 'npm run i-hist-svc' 'npm run i-frontend'",
"lint": "npx eslint .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g60.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g60/issues"
},
"homepage": "https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g60#readme",
"devDependencies": {
"concurrently": "^7.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}