Files
komodo/package.json
T
2022-03-21 03:07:23 -07:00

30 lines
719 B
JSON

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