2025-10-10 13:43:38 +08:00
|
|
|
{
|
|
|
|
|
"name": "portal",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"serve": "vue-cli-service serve",
|
|
|
|
|
"build": "vue-cli-service build",
|
|
|
|
|
"lint": "vue-cli-service lint"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-10-14 18:39:21 +08:00
|
|
|
"@element-plus/icons-vue": "^2.3.2",
|
|
|
|
|
"@wangeditor/editor": "^5.1.23",
|
|
|
|
|
"@wangeditor/editor-for-vue": "^1.0.2",
|
2025-10-21 11:38:27 +08:00
|
|
|
"axios": "^1.12.2",
|
2025-10-10 13:43:38 +08:00
|
|
|
"core-js": "^3.8.3",
|
2025-10-14 18:39:21 +08:00
|
|
|
"d3": "^7.9.0",
|
|
|
|
|
"echarts": "^6.0.0",
|
|
|
|
|
"element-plus": "^2.11.4",
|
2025-10-21 11:38:27 +08:00
|
|
|
"pinia": "^3.0.3",
|
2025-10-10 13:43:38 +08:00
|
|
|
"vue": "^3.2.13",
|
2025-10-21 11:38:27 +08:00
|
|
|
"vue-router": "^4.0.3"
|
2025-10-10 13:43:38 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
|
|
|
"@vue/cli-plugin-babel": "~5.0.0",
|
|
|
|
|
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
|
|
|
"@vue/cli-plugin-router": "~5.0.0",
|
|
|
|
|
"@vue/cli-plugin-typescript": "~5.0.0",
|
|
|
|
|
"@vue/cli-plugin-vuex": "~5.0.0",
|
|
|
|
|
"@vue/cli-service": "~5.0.0",
|
|
|
|
|
"@vue/eslint-config-typescript": "^9.1.0",
|
|
|
|
|
"eslint": "^7.32.0",
|
|
|
|
|
"eslint-plugin-vue": "^8.0.3",
|
|
|
|
|
"typescript": "~4.5.5"
|
|
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"root": true,
|
|
|
|
|
"env": {
|
2025-10-14 18:39:21 +08:00
|
|
|
"node": true,
|
|
|
|
|
"vue/setup-compiler-macros": true
|
2025-10-10 13:43:38 +08:00
|
|
|
},
|
|
|
|
|
"extends": [
|
|
|
|
|
"plugin:vue/vue3-essential",
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"@vue/typescript/recommended"
|
|
|
|
|
],
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaVersion": 2020
|
|
|
|
|
},
|
2025-10-21 11:38:27 +08:00
|
|
|
"rules": {
|
|
|
|
|
"vue/multi-word-component-names": "off"
|
|
|
|
|
},
|
2025-10-14 18:39:21 +08:00
|
|
|
"globals": {
|
|
|
|
|
"defineProps": "readonly",
|
|
|
|
|
"defineEmits": "readonly",
|
|
|
|
|
"defineExpose": "readonly",
|
2025-10-21 11:38:27 +08:00
|
|
|
"withDefaults": "readonly",
|
|
|
|
|
"defineOptions": "readonly"
|
2025-10-14 18:39:21 +08:00
|
|
|
}
|
2025-10-10 13:43:38 +08:00
|
|
|
},
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"> 1%",
|
|
|
|
|
"last 2 versions",
|
|
|
|
|
"not dead",
|
|
|
|
|
"not ie 11"
|
|
|
|
|
]
|
|
|
|
|
}
|