chore: 安装所需依赖

This commit is contained in:
pany
2022-04-21 16:43:59 +08:00
parent 1da0c6ca6b
commit 902eea18de
2 changed files with 507 additions and 7 deletions

View File

@@ -14,11 +14,24 @@
},
"dependencies": {
"@element-plus/icons-vue": "^1.1.4",
"axios": "^0.26.1",
"dayjs": "^1.11.1",
"element-plus": "^2.1.10",
"vue": "^3.2.33"
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.0",
"pinia": "^2.0.13",
"screenfull": "^6.0.1",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@types/js-cookie": "^3.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.25",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^2.3.1",
@@ -31,11 +44,22 @@
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.6.0",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"sass": "^1.50.1",
"typescript": "^4.6.3",
"unplugin-auto-import": "^0.7.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.5",
"vue-tsc": "^0.34.7"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"pnpm lint",
"git add"
]
}
}