uptime-kuma/package.json

107 lines
5.5 KiB
JSON
Raw Normal View History

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
},
"engines": {
2021-07-29 18:02:41 +01:00
"node": "14.*"
},
2021-06-24 14:42:03 +01:00
"scripts": {
"install-legacy": "npm install --legacy-peer-deps",
"update-legacy": "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-09-21 14:28:45 +01:00
"tsc": "tsc",
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",
"build-docker-nightly-alpine": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:nightly-alpine --target nightly . --push",
"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-17 08:19:19 +01:00
"test-nodejs16": "docker build --progress plain -f test/ubuntu-nodejs16.dockerfile .",
2021-09-01 10:08:27 +01:00
"simple-dns-server": "node extra/simple-dns-server.js",
"update-language-files-with-base-lang": "cd extra/update-language-files && node index.js %npm_config_base_lang% && eslint ../../src/languages/**.js --fix",
"update-language-files": "cd extra/update-language-files && node index.js && 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",
"@louislam/sqlite3": "^5.0.5",
"@popperjs/core": "^2.10.1",
"args-parser": "^1.3.0",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.1",
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",
"dayjs": "^1.10.7",
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",
"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",
"prometheus-api-metrics": "^3.2.0",
"qrcode": "^1.4.4",
"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-07-01 07:03:06 +01:00
"tcp-ping": "^0.1.1",
"thirty-two": "^1.0.2",
2021-09-15 11:28:48 +01:00
"timezones-list": "^3.0.1",
2021-07-18 02:04:40 +01:00
"v-pagination-3": "^0.1.6",
"vue": "next",
"vue-chart-3": "^0.5.8",
2021-06-24 14:42:03 +01:00
"vue-confirm-dialog": "^1.0.2",
2021-09-14 07:12:27 +01:00
"vue-contenteditable": "^3.0.4",
2021-08-24 09:44:58 +01:00
"vue-i18n": "^9.1.7",
2021-09-15 11:28:48 +01:00
"vue-image-crop-upload": "^3.0.3",
"vue-multiselect": "^3.0.0-alpha.2",
"vue-qrcode": "^1.0.0",
2021-08-15 18:42:39 +01:00
"vue-router": "^4.0.11",
2021-09-12 19:26:45 +01:00
"vue-toastification": "^2.0.0-rc.1",
"vuedraggable": "^4.1.0"
2021-06-24 14:42:03 +01:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@types/bootstrap": "^5.1.4",
"@vitejs/plugin-legacy": "^1.5.3",
"@vitejs/plugin-vue": "^1.6.2",
"@vue/compiler-sfc": "^3.2.11",
"core-js": "^3.17.3",
"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.41.0",
2021-07-27 18:33:44 +01:00
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.4.3",
"vite": "^2.5.7"
2021-06-24 14:42:03 +01:00
}
}