From eea093c1156877433c631a6dda03eef82c23b5ce Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Thu, 2 Feb 2023 08:10:38 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE=E4=BE=9D?= =?UTF-8?q?=E8=B5=96=E6=8F=8F=E8=BF=B0=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dong Xia --- package.json | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..396aa49 --- /dev/null +++ b/package.json @@ -0,0 +1,89 @@ +{ + "name": "mpms-system", + "version": "1.0.0", + "author": { + "name": "linx", + "email": "mail@linx-info.com" + }, + "asar": false, + "description": "系统软件安装管理平台", + "homepage": "../", + "private": true, + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint", + "electron:build": "vue-cli-service electron:build", + "electron:serve": "vue-cli-service electron:serve", + "electron:deb": "vue-cli-service electron:build --linux deb", + "postinstall": "electron-builder install-app-deps", + "postuninstall": "electron-builder install-app-deps" + }, + "main": "background.js", + "dependencies": { + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "ant-design-vue": "^1.7.6", + "axios": "^0.21.1", + "core-js": "^3.16.0", + "dayjs": "^1.11.2", + "echarts": "^4.9.0", + "element-ui": "^2.15.1", + "jshint": "^2.13.1", + "qs": "^6.9.4", + "sass": "^1.43.3", + "sha1": "^1.1.1", + "sortablejs": "^1.14.0", + "vue": "^2.6.14", + "vue-codemirror": "^4.0.6", + "vue-draggable-resizable": "^2.3.0", + "vue-router": "^3.5.2", + "vuex": "^3.5.1", + "xterm": "^4.13.0", + "xterm-addon-attach": "^0.6.0", + "xterm-addon-fit": "^0.5.0" + }, + "devDependencies": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-preset-jsx": "^1.2.4", + "@vue/cli-plugin-babel": "~4.5.13", + "@vue/cli-plugin-eslint": "~4.5.13", + "@vue/cli-service": "~4.5.13", + "@vue/eslint-config-prettier": "^6.0.0", + "babel-eslint": "^10.1.0", + "babel-plugin-component": "^1.1.1", + "babel-plugin-import": "^1.13.3", + "electron": "^13.0.0", + "electron-builder": "^22.13.1", + "electron-devtools-installer": "^3.1.0", + "eslint": "^6.8.0", + "eslint-plugin-prettier": "^3.4.0", + "eslint-plugin-vue": "^7.15.1", + "mockjs": "^1.1.0", + "node-sass": "^6.0.1", + "prettier": "^2.3.2", + "sass-loader": "^7.3.1", + "stylus": "^0.54.8", + "stylus-loader": "^3.0.2", + "vue-cli-plugin-electron-builder": "~2.1.1", + "vue-template-compiler": "^2.6.14" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "babel-eslint" + }, + "rules": {} + }, + "browserslist": [ + "> 1%", + "last 2 versions", + "not dead" + ] +} -- Gitee