package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "vue-antd-admin",
  3. "version": "0.7.4",
  4. "homepage": "https://iczer.github.io/vue-antd-admin",
  5. "private": true,
  6. "scripts": {
  7. "serve": "vue-cli-service serve",
  8. "build": "vue-cli-service build",
  9. "lint": "vue-cli-service lint",
  10. "predeploy": "yarn build"
  11. },
  12. "dependencies": {
  13. "@antv/data-set": "^0.11.4",
  14. "animate.css": "^4.1.0",
  15. "ant-design-vue": "1.7.2",
  16. "axios": "^0.19.2",
  17. "clipboard": "^2.0.6",
  18. "core-js": "^3.6.5",
  19. "date-fns": "^2.14.0",
  20. "enquire.js": "^2.1.6",
  21. "highlight.js": "^10.2.1",
  22. "js-cookie": "^2.2.1",
  23. "mockjs": "^1.1.0",
  24. "nprogress": "^0.2.0",
  25. "v-viewer": "^1.6.4",
  26. "viser-vue": "^2.4.8",
  27. "vue": "^2.6.11",
  28. "vue-i18n": "^8.18.2",
  29. "vue-router": "^3.3.4",
  30. "vuedraggable": "^2.23.2",
  31. "vuex": "^3.4.0",
  32. "vxe-table": "3.6.17",
  33. "vxe-table-plugin-antd": "^3.0.6",
  34. "xe-utils": "^3.5.6"
  35. },
  36. "devDependencies": {
  37. "@ant-design/colors": "^4.0.1",
  38. "@vue/cli-plugin-babel": "^4.4.0",
  39. "@vue/cli-plugin-eslint": "^4.4.0",
  40. "@vue/cli-service": "^4.4.0",
  41. "@vuepress/plugin-back-to-top": "^1.5.2",
  42. "babel-eslint": "^10.1.0",
  43. "babel-plugin-transform-remove-console": "^6.9.4",
  44. "babel-polyfill": "^6.26.0",
  45. "compression-webpack-plugin": "^2.0.0",
  46. "deepmerge": "^4.2.2",
  47. "eslint": "^6.7.2",
  48. "eslint-plugin-vue": "^6.2.2",
  49. "fast-deep-equal": "^3.1.3",
  50. "gh-pages": "^3.1.0",
  51. "less-loader": "^6.1.1",
  52. "style-resources-loader": "^1.3.2",
  53. "vue-cli-plugin-style-resources-loader": "^0.1.4",
  54. "vue-template-compiler": "^2.6.11",
  55. "vuepress": "^1.5.2",
  56. "webpack-theme-color-replacer": "1.3.18",
  57. "whatwg-fetch": "^3.0.0",
  58. "prettier": "^2.2.1",
  59. "lint-staged": "8.1.5",
  60. "husky": "1.3.1",
  61. "eslint-plugin-prettier": "^3.3.1",
  62. "babel-plugin-import": "1.13.6"
  63. },
  64. "eslintConfig": {
  65. "root": true,
  66. "env": {
  67. "node": true
  68. },
  69. "extends": [
  70. "plugin:vue/essential",
  71. "eslint:recommended"
  72. ],
  73. "parserOptions": {
  74. "parser": "babel-eslint"
  75. },
  76. "rules": {}
  77. },
  78. "browserslist": [
  79. "> 1%",
  80. "last 2 versions",
  81. "not ie <= 10"
  82. ],
  83. "husky": {
  84. "hooks": {
  85. "pre-commit": "lint-staged"
  86. }
  87. },
  88. "lint-staged": {
  89. "*.{js,vue}": [
  90. "eslint --fix",
  91. "git add"
  92. ]
  93. }
  94. }