-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 961 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
{
"private": true,
"workspaces": {
"packages": ["client", "server"],
"nohoist": ["*/module-alias"]
},
"scripts": {
"start:client": "yarn workspace client run start",
"start:client-dev": "yarn workspace client run start:dev",
"start:server": "yarn workspace server run start",
"start:server-dev": "yarn workspace server run start:dev",
"build": "yarn workspaces run build",
"build:client": "yarn workspace client run build",
"build:server": "yarn workspace server run build",
"lint": "yarn workspaces run lint",
"test:client": "yarn workspace client run test",
"test:server": "yarn workspace server run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
}
}