package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "vue-antd-pro",
  3. "version": "1.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve --open",
  7. "build": "vue-cli-service build",
  8. "lint": "vue-cli-service lint",
  9. "test:unit": "vue-cli-service test:unit",
  10. "test:e2e": "vue-cli-service test:e2e"
  11. },
  12. "dependencies": {
  13. "@antv/data-set": "^0.10.1",
  14. "ant-design-vue": "^1.3.1",
  15. "axios": "^0.18.0",
  16. "dayjs": "^1.8.0",
  17. "enquire.js": "^2.1.6",
  18. "js-cookie": "^2.2.0",
  19. "lodash.get": "^4.4.2",
  20. "lodash.pick": "^4.4.0",
  21. "md5": "^2.2.1",
  22. "nprogress": "^0.2.0",
  23. "viser-vue": "^2.4.4",
  24. "vue": "^2.5.22",
  25. "vue-class-component": "^6.0.0",
  26. "vue-cropper": "^0.4.8",
  27. "vue-i18n": "^8.7.0",
  28. "vue-ls": "^3.2.0",
  29. "vue-print-nb": "^1.0.3",
  30. "vue-property-decorator": "^7.3.0",
  31. "vue-router": "^3.0.1",
  32. "vuex": "^3.0.1",
  33. "vuex-class": "^0.3.1"
  34. },
  35. "devDependencies": {
  36. "@babel/polyfill": "^7.2.5",
  37. "@vue/cli-plugin-babel": "^3.3.0",
  38. "@vue/cli-plugin-eslint": "^3.3.0",
  39. "@vue/cli-service": "^3.3.0",
  40. "@vue/eslint-config-standard": "^4.0.0",
  41. "babel-eslint": "^10.0.1",
  42. "eslint": "^5.12.0",
  43. "eslint-plugin-vue": "^5.1.0",
  44. "less": "^3.8.1",
  45. "less-loader": "^4.1.0",
  46. "node-sass": "^4.11.0",
  47. "sass-loader": "^7.0.1",
  48. "vue-template-compiler": "^2.5.22"
  49. },
  50. "eslintConfig": {
  51. "root": true,
  52. "env": {
  53. "node": true
  54. },
  55. "extends": [
  56. "plugin:vue/strongly-recommended",
  57. "eslint:recommended"
  58. ],
  59. "parserOptions": {
  60. "parser": "babel-eslint"
  61. },
  62. "rules": {
  63. "generator-star-spacing": "off",
  64. "no-mixed-operators": 0,
  65. "vue/max-attributes-per-line": [
  66. 2,
  67. {
  68. "singleline": 5,
  69. "multiline": {
  70. "max": 1,
  71. "allowFirstLine": false
  72. }
  73. }
  74. ],
  75. "vue/attribute-hyphenation": 0,
  76. "vue/html-self-closing": 0,
  77. "vue/component-name-in-template-casing": 0,
  78. "vue/html-closing-bracket-spacing": 0,
  79. "vue/singleline-html-element-content-newline": 0,
  80. "vue/no-unused-components": 0,
  81. "vue/multiline-html-element-content-newline": 0,
  82. "vue/no-use-v-if-with-v-for": 0,
  83. "vue/html-closing-bracket-newline": 0,
  84. "vue/no-parsing-error": 0,
  85. "no-console": 0
  86. }
  87. },
  88. "postcss": {
  89. "plugins": {
  90. "autoprefixer": {}
  91. }
  92. },
  93. "browserslist": [
  94. "> 1%",
  95. "last 2 versions",
  96. "not ie <= 8"
  97. ]
  98. }