forked from github-starred/komodo
28 lines
603 B
JSON
28 lines
603 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",
|
|
"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"
|
|
}
|
|
}
|