package.json 2.6 KB

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