-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 796 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 796 Bytes
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
{
"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": {
"@stellar/stellar-sdk": "^14.1.0",
"demo-wallet-shared": "^2.0.0",
"form-data": "^4.0.4",
"npm-run-all": "^4.1.5"
},
"resolutions": {
"form-data": "4.0.4"
}
}