This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-01-31 20:18:58 +00:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2020-02-12 17:23:10 +00:00
|
|
|
"start:client": "yarn workspace sia-skynet start",
|
|
|
|
"start:server": "yarn workspace siaviewnode-server dev",
|
|
|
|
"build:client": "yarn workspace sia-skynet build",
|
|
|
|
"build:server": "yarn workspace siaviewnode-server build && yarn workspace siaviewnode-server start",
|
|
|
|
"dev": "concurrently \"yarn start:client\" \"yarn start:server\"",
|
2020-02-12 19:00:32 +00:00
|
|
|
"start": "NODE_ENV=production concurrently \"yarn build:client && npx http-server -p 3000 packages/sia-skynet/build\" \"yarn build:server\""
|
2020-01-31 20:18:58 +00:00
|
|
|
},
|
|
|
|
"workspaces": {
|
|
|
|
"packages": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"concurrently": "5.0.0"
|
|
|
|
}
|
|
|
|
}
|