forked from stellar/stellar-demo-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 681 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:client": "yarn workspace demo-wallet-client build",
"build:shared": "yarn workspace demo-wallet-shared build",
"build:server": "yarn workspace demo-wallet-server build",
"build": "run-s build:shared build:client",
"start:client": "yarn workspace demo-wallet-client start",
"start:shared": "yarn workspace demo-wallet-shared start",
"start:server": "yarn workspace demo-wallet-server start",
"clean": "rm -rf node_modules && rm -rf */**/node_modules && rm -rf */**/build"
},
"dependencies": {
"demo-wallet-shared": "^1.0.0",
"npm-run-all": "^4.1.5"
}
}