-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.23 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
{
"private": true,
"workspaces": [
"entities",
"interactors",
"firebase-gateway",
"app"
],
"scripts": {
"test:entities": "cd entities && yarn test",
"lint:entities": "cd entities && yarn lint --fix",
"test:interactors": "cd interactors && yarn test",
"lint:interactors": "cd interactors && yarn lint --fix",
"test:firebase-gateway": "cd firebase-gateway && yarn test",
"lint:firebase-gateway": "cd firebase-gateway && yarn lint --fix",
"test:app": "cd app && yarn test",
"lint:app": "cd app && yarn lint --fix",
"lint": "yarn lint:entities && yarn lint:interactors && yarn lint:firebase-gateway && yarn lint:app",
"test": "yarn test:entities && yarn test:interactors && yarn test:firebase-gateway && test lint:app",
"build:entities": "cd entities && yarn build",
"build:interactors": "cd interactors && yarn build",
"build:firebase-gateway": "cd firebase-gateway && yarn build",
"build:app": "cd app && yarn build",
"build:lib": "yarn build:entities && yarn build:interactors && yarn build:firebase-gateway",
"build": "yarn build:entities && yarn build:interactors && yarn build:firebase-gateway && yarn build:app",
"start": "yarn build:lib && cd app && yarn start"
}
}