-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.05 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
{
"private": true,
"name": "people-manager",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently --kill-others-on-fail \"yarn frontend-dev\" \"yarn backend-dev\"",
"frontend-dev": "yarn workspace frontend start",
"backend-dev": "yarn workspace backend dev",
"build-frontend": "yarn workspace frontend build",
"db-migrate": "yarn workspace backend migrate",
"db-seed": "yarn workspace backend seed",
"build": "concurrently \"yarn workspace frontend build\" \"yarn workspace backend build\"",
"lint": "concurrently \"yarn lint-frontend\" \"yarn lint-backend\"",
"lint-frontend": "yarn workspace frontend lint",
"lint-backend": "yarn workspace backend lint",
"style": "concurrently \"yarn style-frontend\" \"yarn style-backend\"",
"style-frontend": "yarn workspace frontend style-fix",
"style-backend": "yarn workspace backend style-fix"
},
"eslintConfig": {
"rules": {
"no-console": "off"
}
},
"dependencies": {
"concurrently": "^8.2.2"
}
}