package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "vue-antd-pro",
  3. "version": "3.0.4",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build --no-module",
  8. "test:unit": "vue-cli-service test:unit",
  9. "lint": "vue-cli-service lint",
  10. "build:preview": "vue-cli-service build --no-module --mode preview",
  11. "lint:nofix": "vue-cli-service lint --no-fix",
  12. "lint:js": "eslint src/**/*.js --fix",
  13. "lint:css": "stylelint src/**/*.*ss --fix --custom-syntax postcss-less",
  14. "prepare": "husky install"
  15. },
  16. "dependencies": {
  17. "@ant-design-vue/pro-layout": "^1.0.12",
  18. "@antv/data-set": "^0.10.2",
  19. "ant-design-vue": "^1.7.8",
  20. "axios": "^0.26.1",
  21. "babel-loader": "8",
  22. "core-js": "^3.21.1",
  23. "enquire.js": "^2.1.6",
  24. "lodash.clonedeep": "^4.5.0",
  25. "lodash.get": "^4.4.2",
  26. "lodash.pick": "^4.4.0",
  27. "md5": "^2.3.0",
  28. "mockjs2": "1.0.8",
  29. "moment": "^2.29.2",
  30. "nprogress": "^0.2.0",
  31. "store": "^2.0.12",
  32. "viser-vue": "^2.4.8",
  33. "vue": "^2.6.14",
  34. "vue-clipboard2": "^0.2.1",
  35. "vue-cropper": "0.4.9",
  36. "vue-i18n": "^8.27.1",
  37. "vue-quill-editor": "^3.0.6",
  38. "vue-router": "^3.5.3",
  39. "vue-svg-component-runtime": "^1.0.1",
  40. "vue-template-compiler": "^2.6.14",
  41. "vuex": "^3.6.2",
  42. "wangeditor": "^3.1.1"
  43. },
  44. "devDependencies": {
  45. "@ant-design/colors": "^3.2.2",
  46. "@commitlint/cli": "^12.1.4",
  47. "@commitlint/config-conventional": "^12.1.4",
  48. "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
  49. "@vue/cli-plugin-babel": "~5.0.8",
  50. "@vue/cli-plugin-eslint": "~5.0.8",
  51. "@vue/cli-plugin-router": "~5.0.8",
  52. "@vue/cli-plugin-unit-jest": "~5.0.8",
  53. "@vue/cli-plugin-vuex": "~5.0.8",
  54. "@vue/cli-service": "~5.0.8",
  55. "@vue/eslint-config-standard": "^4.0.0",
  56. "@vue/test-utils": "^1.3.0",
  57. "babel-eslint": "^10.1.0",
  58. "babel-plugin-import": "^1.13.3",
  59. "babel-plugin-transform-remove-console": "^6.9.4",
  60. "commitizen": "^4.2.4",
  61. "cz-conventional-changelog": "^3.3.0",
  62. "eslint": "^7.0.0",
  63. "eslint-plugin-html": "^5.0.5",
  64. "eslint-plugin-vue": "^5.2.3",
  65. "file-loader": "^6.2.0",
  66. "git-revision-webpack-plugin": "^3.0.6",
  67. "husky": "^6.0.0",
  68. "less": "^3.13.1",
  69. "less-loader": "^5.0.0",
  70. "lint-staged": "^12.5.0",
  71. "postcss": "^8.3.5",
  72. "postcss-less": "^6.0.0",
  73. "regenerator-runtime": "^0.13.9",
  74. "stylelint": "^14.8.5",
  75. "stylelint-config-css-modules": "^4.1.0",
  76. "stylelint-config-recess-order": "^3.0.0",
  77. "stylelint-config-recommended": "^7.0.0",
  78. "stylelint-config-standard": "^25.0.0",
  79. "stylelint-order": "^5.0.0",
  80. "vue-svg-icon-loader": "^2.1.1",
  81. "vue-svg-loader": "0.16.0",
  82. "webpack-theme-color-replacer": "^1.3.26"
  83. },
  84. "config": {
  85. "commitizen": {
  86. "path": "./node_modules/cz-conventional-changelog"
  87. }
  88. },
  89. "husky": {
  90. "hooks": {
  91. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  92. }
  93. },
  94. "gitHooks": {
  95. "pre-commit": "lint-staged"
  96. }
  97. }