-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"yarn workspace server dev\" \"yarn workspace client dev --no-open\"",
"start": "npx --yes concurrently \"npm run start --workspace=server\" \"npm run start --workspace=client\"",
"build": "concurrently \"yarn workspace server build\" \"yarn workspace client build\"",
"preview": "concurrently \"yarn workspace server preview\" \"yarn workspace client preview --no-open\"",
"test": "yarn workspace client test",
"e2e": "yarn workspace client e2e",
"e2e:run": "yarn workspace client e2e:run",
"format": "concurrently \"yarn workspace server format\" \"yarn workspace client format\"",
"lint": "concurrently \"yarn workspace server lint\" \"yarn workspace client lint\"",
"type-check": "concurrently \"yarn workspace server type-check\" \"yarn workspace client type-check\""
},
"devDependencies": {
"concurrently": "^8.2.0"
}
}