Files
komodo/package.json
2022-03-31 00:53:47 -07:00

30 lines
742 B
JSON

{
"name": "monitor",
"version": "1.0.0",
"main": "index.js",
"author": "mbecker20",
"license": "GPL v3.0",
"private": true,
"workspaces": [
"types",
"util",
"core",
"periphery",
"frontend",
"cli"
],
"scripts": {
"start-frontend": "cd frontend && yarn start",
"start-cli": "cd cli && yarn start",
"update-cli-version": "cd cli && yarn update-version",
"build-core": "cd core && yarn build",
"restart-core": "cd core && yarn build && cd ../cli && yarn restart-default",
"push-core": "cd core && yarn push",
"build-periphery": "cd periphery && yarn docker-build",
"push-periphery": "cd periphery && yarn push"
},
"devDependencies": {
"typescript": "^4.6.2"
}
}