-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "blog-api",
"private": true,
"version": "1.0.0",
"workspaces": [
"server",
"client-view",
"client-editor"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace server\" \"npm run dev --workspace client-view\" \"npm run dev --workspace client-editor\"",
"dev:server": "npm run dev --workspace server",
"dev:view": "npm run dev --workspace client-view",
"dev:editor": "npm run dev --workspace client-editor",
"build": "npm run build --workspaces",
"build:server": "npm run build --workspace server",
"build:view": "npm run build --workspace client-view",
"build:editor": "npm run build --workspace client-editor"
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}