package.json 3.9 KB

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