-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 984 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
27
28
29
30
31
32
33
34
{
"private": true,
"workspaces": [
"frontend",
"backend",
"common"
],
"nohoist": [
"husky"
],
"scripts": {
"backend": "yarn workspace backend",
"frontend": "yarn workspace frontend",
"common": "yarn workspace common",
"start": "wsrun -me --report start",
"build": "wsrun -ml --report build",
"lint:check": "wsrun -ml --report lint:check",
"lint:fix": "wsrun -ml --report lint:fix",
"precommit": "wsrun -mls --report precommit",
"kill": "wsrun -ml --report kill",
"sync-lock:root": "node scripts/yarn-sync.js",
"sync-lock": "yarn sync-lock:root && wsrun -ml --report sync-lock",
"upgrade-minor": "yarn upgrade --caret && yarn sync-lock && yarn install",
"test": "jest",
"test:coverage": "yarn test --coverage",
"prepare": "husky install",
"db:start": "yarn backend db:start",
"db:stop": "yarn backend db:stop"
},
"devDependencies": {
"husky": "^6.0.0",
"wsrun": "^5.2.4"
}
}