forked from keanecjy/PeerPrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 947 Bytes
/
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
{
"name": "peerprep",
"version": "2.0.0",
"private": true,
"scripts": {
"fe:start": "yarn workspace @peerprep/client start",
"be:start": "yarn run be:account:start & yarn run be:chat:start & yarn run be:interview:start & yarn run be:match:start",
"be:account:start": "yarn workspace @peerprep/account start:dev",
"be:chat:start": "yarn workspace @peerprep/chat start:dev",
"be:interview:start": "yarn workspace @peerprep/interview start:dev",
"be:match:start": "yarn workspace @peerprep/match start:dev",
"lint": "yarn workspaces run lint",
"aws:login": "aws ecr get-login-password --region ap-southeast-1 | docker login --username AWS --password-stdin 656831507331.dkr.ecr.ap-southeast-1.amazonaws.com",
"aws:build:all": "yarn workspaces run aws:build"
},
"workspaces": {
"packages": [
"frontend",
"backend/*"
],
"nohoist": [
"**/jest"
]
},
"license": "MIT"
}