package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "vue-admin-template",
  3. "version": "4.4.0",
  4. "description": "A vue admin template with Element UI & axios & iconfont & permission control & lint",
  5. "author": "Pan <panfree23@gmail.com>",
  6. "scripts": {
  7. "dev": "vue-cli-service serve",
  8. "build:prod": "vue-cli-service build",
  9. "build:stage": "vue-cli-service build --mode staging",
  10. "preview": "node build/index.js --preview",
  11. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
  12. "lint": "eslint --ext .js,.vue src"
  13. },
  14. "dependencies": {
  15. "axios": "0.18.1",
  16. "core-js": "3.6.5",
  17. "dayjs": "^1.9.3",
  18. "echarts": "^4.9.0",
  19. "element-ui": "2.13.2",
  20. "husky": "^4.3.0",
  21. "js-cookie": "2.2.0",
  22. "normalize.css": "7.0.0",
  23. "nprogress": "0.2.0",
  24. "path-to-regexp": "2.4.0",
  25. "vue": "2.6.10",
  26. "vue-count-to": "^1.0.13",
  27. "vue-router": "3.0.6",
  28. "vuex": "3.1.0"
  29. },
  30. "devDependencies": {
  31. "@commitlint/cli": "^11.0.0",
  32. "@commitlint/config-conventional": "^11.0.0",
  33. "@vue/cli-plugin-babel": "4.4.4",
  34. "@vue/cli-plugin-eslint": "4.4.4",
  35. "@vue/cli-plugin-unit-jest": "4.4.4",
  36. "@vue/cli-service": "4.4.4",
  37. "autoprefixer": "9.5.1",
  38. "babel-eslint": "10.1.0",
  39. "babel-plugin-dynamic-import-node": "2.3.3",
  40. "chalk": "2.4.2",
  41. "connect": "3.6.6",
  42. "cz-conventional-changelog": "^3.3.0",
  43. "eslint": "6.7.2",
  44. "eslint-plugin-vue": "6.2.2",
  45. "html-webpack-plugin": "3.2.0",
  46. "mockjs": "1.0.1-beta3",
  47. "runjs": "4.3.2",
  48. "sass": "1.26.8",
  49. "sass-loader": "8.0.2",
  50. "script-ext-html-webpack-plugin": "2.1.3",
  51. "serve-static": "1.13.2",
  52. "svg-sprite-loader": "4.1.3",
  53. "svgo": "1.2.2",
  54. "vue-template-compiler": "2.6.10"
  55. },
  56. "browserslist": [
  57. "> 1%",
  58. "last 2 versions"
  59. ],
  60. "engines": {
  61. "node": ">=8.9",
  62. "npm": ">= 3.0.0"
  63. },
  64. "license": "MIT",
  65. "config": {
  66. "commitizen": {
  67. "path": "./node_modules/cz-conventional-changelog"
  68. }
  69. },
  70. "husky": {
  71. "hooks": {
  72. "commit-msg": "commitlint -e $GIT_PARAMS"
  73. }
  74. }
  75. }