-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1011 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "@c2w/base",
"packageManager": "yarn@4.3.1",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -k -p \"[{name}]\" -n \"Browser Runtime,Proxy,Playground\" \"yarn workspace @c2w/browser_runtime watch\" \"yarn workspace @c2w/proxy dev\" \"yarn workspace @c2w/playground dev\"",
"build": "yarn workspace @c2w/browser_runtime build && yarn workspace @c2w/proxy build && yarn workspace @c2w/proxy build && yarn workspace @c2w/playground build",
"browser_runtime:dev": "yarn workspace @c2w/browser_runtime watch",
"browser_runtime:build": "yarn workspace @c2w/browser_runtime build",
"builder:dev": "yarn workspace @c2w/builder watch",
"builder:build": "yarn workspace @c2w/builder build",
"playground:dev": "yarn workspace @c2w/playground dev",
"playground:build": "yarn workspace @c2w/playground build",
"playground:build:images": "yarn workspace @c2w/playground build:images"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}