package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {
  2. "name": "vue-element-admin",
  3. "version": "4.4.0",
  4. "description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features",
  5. "author": "Pan <panfree23@gmail.com>",
  6. "scripts": {
  7. "dev": "vue-cli-service serve",
  8. "lint": "eslint --ext .js,.vue src",
  9. "build:prod": "vue-cli-service build",
  10. "build:stage": "vue-cli-service build --mode staging",
  11. "preview": "node build/index.js --preview",
  12. "new": "plop",
  13. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
  14. "test:unit": "jest --clearCache && vue-cli-service test:unit",
  15. "test:ci": "npm run lint && npm run test:unit"
  16. },
  17. "dependencies": {
  18. "@aspnet/signalr": "^1.0.27",
  19. "@jiaminghi/data-view": "^2.9.4",
  20. "axios": "0.18.1",
  21. "canvas2image": "^1.0.5",
  22. "chart.js": "^2.9.3",
  23. "clipboard": "2.0.4",
  24. "codemirror": "5.45.0",
  25. "core-js": "3.6.5",
  26. "date-and-time": "^2.0.1",
  27. "date-fns": "^2.16.1",
  28. "dom-to-image": "^2.6.0",
  29. "driver.js": "0.9.5",
  30. "dropzone": "5.5.1",
  31. "echarts": "^4.2.1",
  32. "element-ui": "2.13.2",
  33. "file-saver": "^2.0.1",
  34. "formula-input": "0.0.1",
  35. "fuse.js": "3.4.4",
  36. "highcharts": "^9.1.0",
  37. "highcharts-vue": "^1.3.5",
  38. "html2canvas": "^1.0.0-rc.7",
  39. "js-base64": "^3.7.2",
  40. "js-cookie": "2.2.0",
  41. "jsonlint": "1.6.3",
  42. "jszip": "3.2.1",
  43. "nodejieba": "^2.6.0",
  44. "normalize.css": "7.0.0",
  45. "nprogress": "0.2.0",
  46. "path-to-regexp": "2.4.0",
  47. "pinyin": "^3.0.0-alpha.4",
  48. "screenfull": "4.2.0",
  49. "script-loader": "0.7.2",
  50. "sortablejs": "^1.8.4",
  51. "tui-editor": "1.3.3",
  52. "vue": "2.6.10",
  53. "vue-chartjs": "^3.5.0",
  54. "vue-clipboard2": "^0.3.1",
  55. "vue-count-to": "1.0.13",
  56. "vue-echarts": "^5.0.0-beta.0",
  57. "vue-json-views": "^1.3.0",
  58. "vue-router": "3.0.2",
  59. "vue-splitpane": "1.0.4",
  60. "vue2-dropzone": "^3.6.0",
  61. "vue2-editor": "^2.10.2",
  62. "vuedraggable": "2.20.0",
  63. "vuex": "3.1.0",
  64. "vxe-table": "^3.6.13",
  65. "wangeditor": "^4.7.5",
  66. "xe-utils": "^3.5.7",
  67. "xlsx": "^0.14.1"
  68. },
  69. "devDependencies": {
  70. "@vue/cli-plugin-babel": "4.4.4",
  71. "@vue/cli-plugin-eslint": "4.4.4",
  72. "@vue/cli-plugin-unit-jest": "4.4.4",
  73. "@vue/cli-service": "4.4.4",
  74. "@vue/test-utils": "1.0.0-beta.29",
  75. "autoprefixer": "9.5.1",
  76. "babel-eslint": "10.1.0",
  77. "babel-jest": "23.6.0",
  78. "babel-plugin-dynamic-import-node": "2.3.3",
  79. "chalk": "2.4.2",
  80. "chokidar": "2.1.5",
  81. "connect": "3.6.6",
  82. "eslint": "6.7.2",
  83. "eslint-plugin-vue": "6.2.2",
  84. "html-webpack-plugin": "3.2.0",
  85. "husky": "1.3.1",
  86. "less": "^4.1.3",
  87. "less-loader": "^7.3.0",
  88. "lint-staged": "8.1.5",
  89. "mockjs": "1.0.1-beta3",
  90. "plop": "2.3.0",
  91. "runjs": "4.3.2",
  92. "sass": "1.26.2",
  93. "sass-loader": "8.0.2",
  94. "script-ext-html-webpack-plugin": "2.1.3",
  95. "serve-static": "1.13.2",
  96. "svg-sprite-loader": "4.1.3",
  97. "svgo": "1.2.0",
  98. "vue-template-compiler": "2.6.10"
  99. },
  100. "browserslist": [
  101. "> 1%",
  102. "last 2 versions"
  103. ],
  104. "bugs": {
  105. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  106. },
  107. "engines": {
  108. "node": ">=8.9",
  109. "npm": ">= 3.0.0"
  110. },
  111. "keywords": [
  112. "vue",
  113. "admin",
  114. "dashboard",
  115. "element-ui",
  116. "boilerplate",
  117. "admin-template",
  118. "management-system"
  119. ],
  120. "license": "MIT",
  121. "lint-staged": {
  122. "src/**/*.{js,vue}": [
  123. "eslint --fix",
  124. "git add"
  125. ]
  126. },
  127. "husky": {
  128. "hooks": {
  129. "pre-commit": "lint-staged"
  130. }
  131. },
  132. "repository": {
  133. "type": "git",
  134. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  135. }
  136. }