This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.8 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
{
"name": "cs3219-project-ay2223s1-g33-tools",
"version": "1.0.0",
"description": "This is a template repository for CS3219 project.",
"config": {
"proto_output_ts": "./user-service ./matching-service ./frontend/ ./collab-service ./question-service ./history-service",
"proto_output_go": "./session-service ./gateway"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"init-permissions": "chmod 755 ./scripts/gen-proto.sh && chmod 755 ./scripts/gen-proto-go.sh && chmod 755 ./scripts/gen-y-websocket.sh && chmod 755 ./scripts/gen-gateway.sh && chmod 755 ./scripts/gen-certs.sh",
"gen-proto": "./scripts/gen-proto.sh proto $npm_package_config_proto_output_ts",
"gen-proto-go": "./scripts/gen-proto-go.sh proto $npm_package_config_proto_output_go",
"gen-gateway": "./scripts/gen-gateway.sh proto ./gateway",
"gen-y-websocket": "./scripts/gen-y-websocket.sh",
"gen-certs": "./scripts/gen-certs.sh",
"init": "npm run-script init-permissions && npm run-script gen-y-websocket",
"up": "docker-compose -p cs3219-g33-peerprep -f docker-compose.yml up",
"up-core": "docker-compose -p cs3219-g33-peerprep -f docker-compose.yml up redis session-service user-service matching-service matchmaker question-service collab-service history-service gateway frontend",
"up-sharded": "docker-compose -p cs3219-g33-peerprep-sharded -f docker-compose-sharded.yml up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g33.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g33/issues"
},
"homepage": "https://github.com/CS3219-AY2223S1/cs3219-project-ay2223s1-g33#readme",
"dependencies": {
"@protobuf-ts/plugin": "^2.8.0"
}
}