mirror of
https://github.com/moghtech/komodo.git
synced 2026-02-15 00:29:20 -06:00
30 lines
742 B
JSON
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"
|
|
}
|
|
}
|