-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 KB
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
29
30
31
32
33
{
"name": "ezrpc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"demo/*"
],
"scripts": {
"build:common": "yarn workspace @ezrpc/common build",
"build:server": "yarn workspace @ezrpc/server build",
"build:client": "yarn workspace @ezrpc/client build",
"build": "yarn build:common && yarn build:server && yarn build:client",
"sample:start:server": "yarn workspace sample-server start",
"sample:start:client": "yarn workspace sample-client start",
"sample:start": "yarn concurrently \"yarn:sample:start:*\"",
"dev:common": "yarn workspace @ezrpc/common dev",
"dev:server": "yarn workspace @ezrpc/server dev",
"dev:client": "yarn workspace @ezrpc/client dev",
"dev": "yarn build:common && yarn concurrently \"yarn:dev:*\""
},
"devDependencies": {
"@types/node": "^15.6.1",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.2"
},
"dependencies": {
"concurrently": "^6.2.0",
"rimraf": "^3.0.2"
}
}