2023-11-02 12:12:37 +00:00
|
|
|
{
|
|
|
|
"name": "web",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
2024-05-09 12:34:24 +00:00
|
|
|
"type": "module",
|
2023-11-02 12:12:37 +00:00
|
|
|
"scripts": {
|
2024-05-16 13:15:34 +00:00
|
|
|
"serve": "npm run dev",
|
|
|
|
"dev": "vite --open",
|
2024-05-09 12:34:24 +00:00
|
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
|
|
"preview": "vite preview",
|
|
|
|
"build-only": "vite build",
|
|
|
|
"type-check": "vue-tsc --build --force",
|
|
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
|
|
"format": "prettier --write src/"
|
2023-11-02 12:12:37 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-05-30 06:40:53 +00:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2023-11-02 12:12:37 +00:00
|
|
|
"@wangeditor/editor": "^5.1.23",
|
2024-05-09 12:34:24 +00:00
|
|
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
2024-03-17 05:29:52 +00:00
|
|
|
"async-validator": "^4.2.5",
|
2023-11-02 12:12:37 +00:00
|
|
|
"axios": "^1.4.0",
|
|
|
|
"clipboard": "^2.0.11",
|
2023-11-30 02:15:06 +00:00
|
|
|
"crypto-js": "^4.2.0",
|
2024-06-27 03:54:43 +00:00
|
|
|
"echarts": "^5.5.0",
|
2024-05-09 12:34:24 +00:00
|
|
|
"element-plus": "^2.7.0",
|
2024-03-17 05:29:52 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
2023-11-02 12:12:37 +00:00
|
|
|
"moment": "^2.29.4",
|
2024-05-21 13:31:55 +00:00
|
|
|
"nanoid": "^5.0.7",
|
2024-01-30 14:19:45 +00:00
|
|
|
"node-forge": "^1.3.1",
|
2023-11-02 12:12:37 +00:00
|
|
|
"qrcode": "^1.5.3",
|
2024-05-09 12:34:24 +00:00
|
|
|
"vue": "^3.4.15",
|
|
|
|
"vue-router": "^4.2.5",
|
|
|
|
"vuedraggable": "^4.1.0",
|
|
|
|
"vuex": "^4.0.2",
|
2024-05-21 13:31:55 +00:00
|
|
|
"xss": "^1.0.14",
|
|
|
|
"yup": "^1.4.0"
|
2023-11-02 12:12:37 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-05-09 12:34:24 +00:00
|
|
|
"@iconify-json/ep": "^1.1.15",
|
|
|
|
"@rushstack/eslint-patch": "^1.10.2",
|
|
|
|
"@tsconfig/node20": "^20.1.2",
|
|
|
|
"@types/node": "^20.11.19",
|
2024-05-27 08:18:08 +00:00
|
|
|
"@types/qrcode": "^1.5.5",
|
2024-05-09 12:34:24 +00:00
|
|
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
|
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
|
|
"@vue/tsconfig": "^0.5.1",
|
|
|
|
"eslint": "^8.49.0",
|
|
|
|
"eslint-plugin-vue": "^9.17.0",
|
2024-05-16 13:15:34 +00:00
|
|
|
"husky": "^9.0.11",
|
2024-05-09 12:34:24 +00:00
|
|
|
"npm-run-all2": "^6.1.1",
|
|
|
|
"prettier": "^3.0.3",
|
|
|
|
"sass": "^1.72.0",
|
|
|
|
"typescript": "~5.3.0",
|
|
|
|
"unplugin-auto-import": "^0.17.5",
|
|
|
|
"unplugin-icons": "^0.18.5",
|
|
|
|
"unplugin-vue-components": "^0.26.0",
|
|
|
|
"vite": "^5.1.4",
|
|
|
|
"vite-plugin-virtual-mpa": "^1.11.0",
|
|
|
|
"vue-tsc": "^1.8.27"
|
2023-11-02 12:12:37 +00:00
|
|
|
},
|
2024-05-16 13:15:34 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"src/**/*.{.vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint --fix"
|
|
|
|
]
|
|
|
|
},
|
2023-11-02 12:12:37 +00:00
|
|
|
"engines": {
|
2024-05-16 13:15:34 +00:00
|
|
|
"node": ">=18.0.0",
|
|
|
|
"npm": ">=8.6.0"
|
2023-11-02 12:12:37 +00:00
|
|
|
}
|
|
|
|
}
|