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.
skynet-webportal/package.json

20 lines
654 B
JSON

{
"private": true,
"scripts": {
"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\"",
"start": "NODE_ENV=production concurrently \"yarn build:client && npx http-server -p 3000 packages/sia-skynet/build\" \"yarn build:server\""
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"concurrently": "5.0.0"
}
}