-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 898 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
{
"private": true,
"workspaces": [
"json-rpc",
"json-rpc-websocket",
"json-rpc-websocket-server",
"json-rpc-streams",
"json-rpc-browser",
"json-rpc-gui",
"demo"
],
"scripts": {
"build": "yarn build-json-rpc && yarn build-json-rpc-websocket && yarn build-json-rpc-websocket-server && yarn build-json-rpc-streams && yarn build-json-rpc-browser && yarn build-json-rpc-gui && yarn build-demo",
"build-json-rpc": "yarn workspace @hediet/json-rpc build",
"build-json-rpc-websocket": "yarn workspace @hediet/json-rpc-websocket build",
"build-json-rpc-websocket-server": "yarn workspace @hediet/json-rpc-websocket-server build",
"build-json-rpc-streams": "yarn workspace @hediet/json-rpc-streams build",
"build-json-rpc-browser": "yarn workspace @hediet/json-rpc-browser build",
"build-json-rpc-gui": "echo 'nothing to do'",
"build-demo": "yarn workspace demo build"
}
}