2021-06-24 14:42:03 +01:00
|
|
|
{
|
|
|
|
"name": "uptime-kuma",
|
2021-09-10 10:56:33 +01:00
|
|
|
"version": "1.6.0",
|
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
|
|
|
},
|
2021-07-28 17:52:41 +01:00
|
|
|
"engines": {
|
2021-07-29 18:02:41 +01:00
|
|
|
"node": "14.*"
|
2021-07-28 17:52:41 +01:00
|
|
|
},
|
2021-06-24 14:42:03 +01:00
|
|
|
"scripts": {
|
2021-09-12 05:39:22 +01:00
|
|
|
"install-legacy-peer-deps": "npm install --legacy-peer-deps",
|
|
|
|
"update-legacy-peer-deps": "npm update --legacy-peer-deps",
|
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-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-10 11:08:23 +01:00
|
|
|
"build-docker": "npm run build-docker-debian && npm run build-docker-alpine",
|
2021-09-10 10:56:33 +01:00
|
|
|
"build-docker-alpine": "docker buildx build -f dockerfile-alpine --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:alpine -t louislam/uptime-kuma:1-alpine -t louislam/uptime-kuma:1.6.0-alpine --target release . --push",
|
|
|
|
"build-docker-debian": "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.6.0 -t louislam/uptime-kuma:debian -t louislam/uptime-kuma:1-debian -t louislam/uptime-kuma:1.6.0-debian --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",
|
2021-08-23 10:27:03 +01:00
|
|
|
"build-docker-nightly-amd64": "docker buildx build --platform linux/amd64 -t louislam/uptime-kuma:nightly-amd64 --target nightly . --push --progress plain",
|
2021-09-10 10:56:33 +01:00
|
|
|
"setup": "git checkout 1.6.0 && 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 .",
|
2021-09-01 10:08:27 +01:00
|
|
|
"simple-dns-server": "node extra/simple-dns-server.js",
|
|
|
|
"update-language-files": "cd extra/update-language-files && node index.js %npm_config_base_lang% && eslint ../../src/languages/**.js --fix"
|
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",
|
2021-07-12 11:33:25 +01:00
|
|
|
"args-parser": "^1.3.0",
|
2021-06-24 14:42:03 +01:00
|
|
|
"axios": "^0.21.1",
|
2021-08-31 12:56:44 +01:00
|
|
|
"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-09-01 19:53:12 +01:00
|
|
|
"http-graceful-shutdown": "^3.1.4",
|
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-09-09 20:10:31 +01:00
|
|
|
"notp": "^2.0.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",
|
2021-07-22 08:43:04 +01:00
|
|
|
"prometheus-api-metrics": "^3.2.0",
|
2021-09-09 20:10:31 +01:00
|
|
|
"qrcode": "^1.4.4",
|
2021-08-31 12:56:44 +01:00
|
|
|
"redbean-node": "0.1.2",
|
2021-09-01 19:53:12 +01:00
|
|
|
"socket.io": "^4.2.0",
|
|
|
|
"socket.io-client": "^4.2.0",
|
2021-09-01 07:33:00 +01:00
|
|
|
"sqlite3": "github:mapbox/node-sqlite3#593c9d",
|
2021-07-01 07:03:06 +01:00
|
|
|
"tcp-ping": "^0.1.1",
|
2021-09-12 12:27:41 +01:00
|
|
|
"timezones-list": "^3.0.1",
|
2021-09-09 20:10:31 +01:00
|
|
|
"thirty-two": "^1.0.2",
|
2021-07-18 02:04:40 +01:00
|
|
|
"v-pagination-3": "^0.1.6",
|
2021-09-04 07:41:45 +01:00
|
|
|
"vue": "^3.2.8",
|
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",
|
2021-08-05 12:04:38 +01:00
|
|
|
"vue-multiselect": "^3.0.0-alpha.2",
|
2021-09-09 20:10:31 +01:00
|
|
|
"vue-qrcode": "^1.0.0",
|
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-09-01 19:53:12 +01:00
|
|
|
"@types/bootstrap": "^5.1.2",
|
|
|
|
"@vitejs/plugin-legacy": "^1.5.2",
|
|
|
|
"@vitejs/plugin-vue": "^1.6.0",
|
|
|
|
"@vue/compiler-sfc": "^3.2.6",
|
|
|
|
"core-js": "^3.17.0",
|
2021-08-25 18:50:27 +01:00
|
|
|
"dns2": "^2.0.1",
|
2021-08-05 15:46:48 +01:00
|
|
|
"eslint": "^7.32.0",
|
2021-09-01 19:53:12 +01:00
|
|
|
"eslint-plugin-vue": "^7.17.0",
|
|
|
|
"sass": "^1.38.2",
|
2021-07-27 18:33:44 +01:00
|
|
|
"stylelint": "^13.13.1",
|
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2021-09-01 19:53:12 +01:00
|
|
|
"typescript": "^4.4.2",
|
|
|
|
"vite": "^2.5.3"
|
2021-06-24 14:42:03 +01:00
|
|
|
}
|
|
|
|
}
|