uptime-kuma/package.json

93 lines
4.4 KiB
JSON
Raw Normal View History

2021-06-24 14:42:03 +01:00
{
"name": "uptime-kuma",
2021-09-01 08:04:31 +01:00
"version": "1.5.2",
2021-07-17 22:45:36 +01:00
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/louislam/uptime-kuma.git"
2021-07-17 22:57:48 +01:00
},
"engines": {
2021-07-29 18:02:41 +01:00
"node": "14.*"
},
2021-06-24 14:42:03 +01:00
"scripts": {
2021-08-23 16:54:15 +01:00
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
2021-08-24 16:38:25 +01:00
"lint:style": "stylelint \"**/*.{vue,css,scss}\" --ignore-path .gitignore",
2021-08-23 16:54:15 +01:00
"lint": "npm run lint:js && npm run lint:style",
2021-07-01 14:47:14 +01:00
"dev": "vite --host",
2021-07-28 17:36:35 +01:00
"start": "npm run start-server",
2021-07-09 07:14:03 +01:00
"start-server": "node server/server.js",
2021-08-11 07:52:25 +01:00
"start-demo-server": "set NODE_ENV=demo && node server/server.js",
2021-07-09 07:14:03 +01:00
"update": "",
2021-07-11 06:47:57 +01:00
"build": "vite build",
2021-07-11 09:02:06 +01:00
"vite-preview-dist": "vite preview --host",
2021-09-01 08:04:31 +01:00
"build-docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma -t louislam/uptime-kuma:1 -t louislam/uptime-kuma:1.5.2 --target release . --push",
2021-07-18 15:21:34 +01:00
"build-docker-nightly": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:nightly --target nightly . --push",
"build-docker-nightly-amd64": "docker buildx build --platform linux/amd64 -t louislam/uptime-kuma:nightly-amd64 --target nightly . --push --progress plain",
"build-docker-1.5.0-debian": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:1.5.0-debian --target release . --push",
2021-09-01 08:04:31 +01:00
"setup": "git checkout 1.5.2 && npm install --legacy-peer-deps && node node_modules/esbuild/install.js && npm run build && npm prune",
2021-08-04 06:53:13 +01:00
"update-version": "node extra/update-version.js",
2021-08-09 06:34:44 +01:00
"mark-as-nightly": "node extra/mark-as-nightly.js",
2021-08-11 07:52:25 +01:00
"reset-password": "node extra/reset-password.js",
2021-08-17 16:08:35 +01:00
"compile-install-script": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./extra/compile-install-script.ps1",
2021-08-18 19:04:49 +01:00
"test-install-script-centos7": "npm run compile-install-script && docker build --progress plain -f test/test_install_script/centos7.dockerfile .",
"test-install-script-alpine3": "npm run compile-install-script && docker build --progress plain -f test/test_install_script/alpine3.dockerfile .",
"test-install-script-ubuntu": "npm run compile-install-script && docker build --progress plain -f test/test_install_script/ubuntu.dockerfile .",
"test-install-script-ubuntu1604": "npm run compile-install-script && docker build --progress plain -f test/test_install_script/ubuntu1604.dockerfile .",
"simple-dns-server": "node extra/simple-dns-server.js"
2021-06-24 14:42:03 +01:00
},
"dependencies": {
2021-08-05 15:46:48 +01:00
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
2021-07-27 09:52:44 +01:00
"@fortawesome/vue-fontawesome": "^3.0.0-4",
2021-08-05 15:46:48 +01:00
"@popperjs/core": "^2.9.3",
"args-parser": "^1.3.0",
2021-06-24 14:42:03 +01:00
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
2021-08-05 15:46:48 +01:00
"bootstrap": "^5.1.0",
2021-08-31 13:36:17 +01:00
"chart.js": "^3.5.1",
2021-08-10 12:34:47 +01:00
"chartjs-adapter-dayjs": "^1.0.0",
2021-07-18 11:51:58 +01:00
"command-exists": "^1.2.9",
2021-08-21 12:50:22 +01:00
"compare-versions": "^3.6.0",
2021-07-17 23:08:35 +01:00
"dayjs": "^1.10.6",
2021-06-24 14:42:03 +01:00
"express": "^4.17.1",
2021-07-27 17:52:31 +01:00
"express-basic-auth": "^1.2.0",
2021-07-09 12:33:22 +01:00
"form-data": "^4.0.0",
2021-08-05 15:46:48 +01:00
"http-graceful-shutdown": "^3.1.3",
2021-06-24 14:42:03 +01:00
"jsonwebtoken": "^8.5.1",
2021-07-17 23:08:35 +01:00
"nodemailer": "^6.6.3",
2021-06-24 14:42:03 +01:00
"password-hash": "^1.2.2",
2021-08-15 18:42:39 +01:00
"prom-client": "^13.2.0",
"prometheus-api-metrics": "^3.2.0",
"redbean-node": "0.1.2",
2021-07-17 23:08:35 +01:00
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"sqlite3": "github:mapbox/node-sqlite3#593c9d",
2021-07-01 07:03:06 +01:00
"tcp-ping": "^0.1.1",
2021-07-18 02:04:40 +01:00
"v-pagination-3": "^0.1.6",
2021-08-15 18:42:39 +01:00
"vue": "^3.2.2",
2021-08-10 12:34:47 +01:00
"vue-chart-3": "^0.5.7",
2021-06-24 14:42:03 +01:00
"vue-confirm-dialog": "^1.0.2",
2021-08-24 09:44:58 +01:00
"vue-i18n": "^9.1.7",
"vue-multiselect": "^3.0.0-alpha.2",
2021-08-15 18:42:39 +01:00
"vue-router": "^4.0.11",
2021-06-24 14:42:03 +01:00
"vue-toastification": "^2.0.0-rc.1"
},
"devDependencies": {
2021-08-05 15:46:48 +01:00
"@babel/eslint-parser": "^7.15.0",
2021-08-15 18:42:39 +01:00
"@types/bootstrap": "^5.1.1",
2021-08-05 15:46:48 +01:00
"@vitejs/plugin-legacy": "^1.5.1",
2021-08-15 18:42:39 +01:00
"@vitejs/plugin-vue": "^1.4.0",
"@vue/compiler-sfc": "^3.2.2",
"core-js": "^3.16.1",
"dns2": "^2.0.1",
2021-08-05 15:46:48 +01:00
"eslint": "^7.32.0",
2021-08-15 18:42:39 +01:00
"eslint-plugin-vue": "^7.16.0",
2021-08-05 15:46:48 +01:00
"sass": "^1.37.5",
2021-07-27 18:33:44 +01:00
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.3.5",
2021-07-27 18:33:44 +01:00
"vite": "^2.4.4"
2021-06-24 14:42:03 +01:00
}
}