package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. {
  2. "name": "vue-antd-pro",
  3. "version": "2.0.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "build:preview": "vue-cli-service build --mode preview",
  9. "lint": "vue-cli-service lint",
  10. "lint:nofix": "vue-cli-service lint --no-fix",
  11. "test:unit": "vue-cli-service test:unit",
  12. "postinstall": "opencollective-postinstall"
  13. },
  14. "dependencies": {
  15. "@antv/data-set": "^0.10.2",
  16. "@antv/g2": "^4.0.11",
  17. "ant-design-vue": "^1.4.5",
  18. "antd": "^3.23.6",
  19. "axios": "^0.19.0",
  20. "core-js": "2.6.9",
  21. "echarts": "^4.7.0",
  22. "enquire.js": "^2.1.6",
  23. "jquery": "^3.2.1",
  24. "jssha": "^2.3.1",
  25. "lodash.get": "^4.4.2",
  26. "lodash.pick": "^4.4.0",
  27. "md5": "^2.2.1",
  28. "mockjs2": "1.0.7",
  29. "moment": "^2.24.0",
  30. "nprogress": "^0.2.0",
  31. "qrcodejs2": "0.0.2",
  32. "sass-loader": "^10.0.3",
  33. "v-viewer": "^1.5.1",
  34. "viser-vue": "^2.4.6",
  35. "vue": "^2.6.10",
  36. "vue-clipboard2": "^0.2.1",
  37. "vue-cookie": "^1.1.4",
  38. "vue-cropper": "0.4.9",
  39. "vue-ls": "^3.2.1",
  40. "vue-print-nb": "^1.5.0",
  41. "vue-quill-editor": "^3.0.6",
  42. "vue-router": "^3.1.2",
  43. "vue-svg-component-runtime": "^1.0.1",
  44. "vuex": "^3.1.1",
  45. "wangeditor": "^3.1.1"
  46. },
  47. "devDependencies": {
  48. "@ant-design/colors": "^3.2.1",
  49. "@babel/polyfill": "7.2.5",
  50. "@vue/cli-plugin-babel": "^3.11.0",
  51. "@vue/cli-plugin-eslint": "^3.11.0",
  52. "@vue/cli-plugin-unit-jest": "^3.11.0",
  53. "@vue/cli-service": "^3.11.0",
  54. "@vue/eslint-config-standard": "^4.0.0",
  55. "@vue/test-utils": "^1.0.0-beta.20",
  56. "babel-core": "7.0.0-bridge.0",
  57. "babel-eslint": "^10.0.3",
  58. "babel-jest": "^23.6.0",
  59. "babel-plugin-import": "^1.11.0",
  60. "babel-plugin-transform-remove-console": "^6.9.4",
  61. "compression-webpack-plugin": "^4.0.0",
  62. "eslint": "^5.8.0",
  63. "eslint-plugin-html": "^5.0.0",
  64. "eslint-plugin-vue": "^5.2.3",
  65. "less": "3.9.0",
  66. "less-loader": "4.1.0",
  67. "opencollective": "^1.0.3",
  68. "opencollective-postinstall": "^2.0.2",
  69. "vue-i18n": "^8.10.0",
  70. "vue-svg-icon-loader": "^2.1.1",
  71. "vue-template-compiler": "^2.6.10",
  72. "webpack-theme-color-replacer": "^1.2.17"
  73. },
  74. "eslintConfig": {
  75. "root": true,
  76. "env": {
  77. "node": true
  78. },
  79. "extends": [
  80. "plugin:vue/strongly-recommended",
  81. "@vue/standard"
  82. ],
  83. "parserOptions": {
  84. "parser": "babel-eslint"
  85. },
  86. "rules": {
  87. "generator-star-spacing": "off",
  88. "no-mixed-operators": 0,
  89. "vue/max-attributes-per-line": [
  90. 2,
  91. {
  92. "singleline": 5,
  93. "multiline": {
  94. "max": 1,
  95. "allowFirstLine": false
  96. }
  97. }
  98. ],
  99. "vue/attribute-hyphenation": 0,
  100. "vue/html-self-closing": 0,
  101. "vue/component-name-in-template-casing": 0,
  102. "vue/html-closing-bracket-spacing": 0,
  103. "vue/singleline-html-element-content-newline": 0,
  104. "vue/no-unused-components": 0,
  105. "vue/multiline-html-element-content-newline": 0,
  106. "vue/no-use-v-if-with-v-for": 0,
  107. "vue/html-closing-bracket-newline": 0,
  108. "vue/no-parsing-error": 0,
  109. "no-console": 0,
  110. "no-tabs": 0,
  111. "quotes": [
  112. 2,
  113. "single",
  114. {
  115. "avoidEscape": true,
  116. "allowTemplateLiterals": true
  117. }
  118. ],
  119. "semi": [
  120. 2,
  121. "never",
  122. {
  123. "beforeStatementContinuationChars": "never"
  124. }
  125. ],
  126. "no-delete-var": 2,
  127. "prefer-const": [
  128. 2,
  129. {
  130. "ignoreReadBeforeAssign": false
  131. }
  132. ]
  133. }
  134. },
  135. "postcss": {
  136. "plugins": {
  137. "autoprefixer": {}
  138. }
  139. },
  140. "browserslist": [
  141. "> 1%",
  142. "last 2 versions",
  143. "not ie <= 10"
  144. ],
  145. "collective": {
  146. "type": "opencollective",
  147. "url": "https://opencollective.com/ant-design-pro-vue"
  148. }
  149. }