Files
komodo/core/package.json
2022-03-20 21:04:42 -07:00

40 lines
1.2 KiB
JSON

{
"name": "monitor-core",
"version": "1.0.0",
"main": "index.js",
"author": "mbecker20",
"license": "MIT",
"scripts": {
"start": "tsc && node build/main.js",
"build-copy-frontend": "cd ../frontend && yarn build && cd ../core && rm -r frontend && mkdir frontend && cp -a ../frontend/build/. ./frontend/",
"build": "vite build && node post-build.mjs && yarn build-copy-frontend && docker build -t mbecker2020/monitor-core .",
"push": "yarn build && docker push mbecker2020/monitor-core"
},
"devDependencies": {
"@monitor/types": "1.0.0",
"@swc/core": "^1.2.156",
"@types/bcrypt": "^5.0.0",
"@types/dockerode": "^3.3.3",
"@types/fs-extra": "^9.0.13",
"@types/ws": "^8.5.3",
"typescript": "^4.6.2",
"vite": "^2.8.6"
},
"dependencies": {
"@monitor/util": "1.0.0",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"dockerode": "^3.3.1",
"fastify": "^3.27.4",
"fastify-cors": "^6.0.3",
"fastify-helmet": "^7.0.1",
"fastify-jwt": "^4.1.3",
"fastify-oauth2": "^4.5.0",
"fastify-plugin": "^3.0.1",
"fastify-static": "^4.5.0",
"fastify-websocket": "^4.2.0",
"fs-extra": "^10.0.1",
"mongoose": "^6.2.6"
}
}