MeterSphere/frontend/package.json

105 lines
3.0 KiB
JSON
Raw Normal View History

2020-02-03 14:01:28 +08:00
{
"name": "vue-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
2021-09-01 19:24:46 +08:00
"build": "export NODE_OPTIONS=--max_old_space_size=4096 && vue-cli-service build",
"build-win": "SET NODE_OPTIONS=--max_old_space_size=4096 && vue-cli-service build",
2020-02-03 14:01:28 +08:00
"lint": "vue-cli-service lint"
},
"dependencies": {
2020-04-28 21:14:09 +08:00
"@ckeditor/ckeditor5-build-classic": "^18.0.0",
"@ckeditor/ckeditor5-vue": "^1.0.1",
"@form-create/element-ui": "^2.5.8",
2020-02-03 14:01:28 +08:00
"@fortawesome/fontawesome-svg-core": "^1.2.26",
2020-06-04 15:56:22 +08:00
"@fortawesome/free-brands-svg-icons": "^5.13.0",
2020-02-03 14:01:28 +08:00
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"axios": "^0.21.1",
2020-02-03 14:01:28 +08:00
"core-js": "^3.4.3",
2020-12-22 16:49:47 +08:00
"diffable-html": "^4.0.0",
2021-10-25 21:27:10 +08:00
"echarts": "^5.0.2",
2020-12-22 16:49:47 +08:00
"el-table-infinite-scroll": "^1.0.10",
2021-02-23 17:10:24 +08:00
"el-tree-transfer": "^2.4.7",
2020-02-03 14:01:28 +08:00
"element-ui": "^2.13.0",
2020-12-22 16:49:47 +08:00
"html2canvas": "^1.0.0-rc.7",
"js-base64": "^3.4.4",
"jsencrypt": "^3.1.0",
2020-12-22 16:49:47 +08:00
"json-bigint": "^1.0.0",
"json-schema-faker": "^0.5.0-rcv.32",
"json5": "^2.1.3",
"jsondiffpatch": "^0.4.1",
2020-12-22 16:49:47 +08:00
"jsoneditor": "^9.1.2",
"jsonpath": "^1.1.0",
2020-12-22 16:49:47 +08:00
"jspdf": "^2.1.1",
"lodash.isboolean": "^3.0.3",
"lodash.isempty": "^4.4.0",
"lodash.isinteger": "^4.0.4",
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
2021-12-02 12:33:53 +08:00
"mavon-editor": "2.9.1",
2020-12-22 16:49:47 +08:00
"md5": "^2.3.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pdfjs-dist": "2.5.207",
2020-12-22 16:49:47 +08:00
"sha.js": "^2.4.11",
2021-06-08 15:57:40 +08:00
"vue": "2.6.14",
2020-12-22 16:49:47 +08:00
"vue-calendar-heatmap": "^0.8.4",
"vue-clipboard2": "^0.3.1",
2021-10-26 16:11:53 +08:00
"vue-echarts": "^6.0.0",
"vue-float-action-button": "^0.6.6",
2020-02-03 14:01:28 +08:00
"vue-i18n": "^8.15.3",
"vue-jsonpath-picker": "^1.1.5",
2021-12-27 10:08:17 +08:00
"vue-minder-editor-plus": "1.0.40",
"vue-papa-parse": "^2.0.0",
2020-12-22 16:49:47 +08:00
"vue-pdf": "^4.2.0",
2020-02-12 16:43:38 +08:00
"vue-router": "^3.1.3",
"vue2-ace-editor": "0.0.15",
"vuedraggable": "^2.24.3",
2020-05-18 14:17:22 +08:00
"vuex": "^3.1.2",
"xml-js": "^1.6.11",
"yan-progress": "^1.0.3"
2020-02-03 14:01:28 +08:00
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
2021-10-26 16:11:53 +08:00
"@vue/composition-api": "^1.2.4",
2020-02-03 14:01:28 +08:00
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
2020-08-18 15:56:19 +08:00
"file-writer": "^1.0.2",
2021-07-15 17:40:15 +08:00
"html-webpack-inline-source-plugin": "0.0.10",
2021-06-16 20:13:09 +08:00
"vue-template-compiler": "2.6.14"
2020-02-03 14:01:28 +08:00
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
2020-03-12 15:57:02 +08:00
"rules": {
"vue/no-unused-components": "off",
2020-04-23 16:40:04 +08:00
"no-console": "off",
2020-06-19 15:18:59 +08:00
"no-unused-vars": "off",
"no-unused-expressions": "off",
"no-unused-labels": "off",
"no-useless-escape": "off"
2020-03-12 15:57:02 +08:00
},
2020-02-03 14:01:28 +08:00
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}