Files
komodo/package.json
2022-03-18 08:59:12 -07:00

29 lines
650 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",
"publish-cli": "cd cli && yarn publish-cli",
"build-core": "cd core && yarn build",
"docker-run-core": "cd core && yarn docker-run",
"build-periphery": "cd periphery && yarn build",
"start-frontend": "cd frontend && yarn start",
"build-frontend": "cd frontend && yarn build"
},
"devDependencies": {
"typescript": "^4.6.2"
}
}