package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. "@jiaminghi/data-view": "^2.9.4",
  19. "axios": "0.18.1",
  20. "chart.js": "^2.9.3",
  21. "clipboard": "2.0.4",
  22. "codemirror": "5.45.0",
  23. "core-js": "3.6.5",
  24. "date-fns": "^2.16.1",
  25. "driver.js": "0.9.5",
  26. "dropzone": "5.5.1",
  27. "echarts": "^4.2.1",
  28. "element-ui": "2.13.2",
  29. "file-saver": "2.0.1",
  30. "filepond": "^4.27.0",
  31. "filepond-plugin-image-preview": "^4.6.6",
  32. "fuse.js": "3.4.4",
  33. "js-cookie": "2.2.0",
  34. "jsonlint": "1.6.3",
  35. "jszip": "3.2.1",
  36. "normalize.css": "7.0.0",
  37. "path-to-regexp": "2.4.0",
  38. "screenfull": "4.2.0",
  39. "script-loader": "0.7.2",
  40. "sortablejs": "1.8.4",
  41. "tui-editor": "1.3.3",
  42. "vue": "2.6.10",
  43. "vue-chartjs": "^3.5.0",
  44. "vue-count-to": "1.0.13",
  45. "vue-echarts": "^5.0.0-beta.0",
  46. "vue-filepond": "^6.0.0",
  47. "vue-json-views": "^1.3.0",
  48. "vue-qriously": "^1.1.1",
  49. "vue-router": "3.0.2",
  50. "vue-splitpane": "1.0.4",
  51. "vue-upload-imgs": "^1.0.3",
  52. "vue2-dropzone": "^3.6.0",
  53. "vuedraggable": "2.20.0",
  54. "vuex": "3.1.0",
  55. "vxe-table": "^3.6.13",
  56. "xe-utils": "^3.5.13",
  57. "xlsx": "0.14.1"
  58. },
  59. "devDependencies": {
  60. "@vue/cli-plugin-babel": "4.4.4",
  61. "@vue/cli-plugin-eslint": "4.4.4",
  62. "@vue/cli-plugin-unit-jest": "4.4.4",
  63. "@vue/cli-service": "4.4.4",
  64. "@vue/test-utils": "1.0.0-beta.29",
  65. "autoprefixer": "9.5.1",
  66. "babel-eslint": "10.1.0",
  67. "babel-jest": "23.6.0",
  68. "babel-plugin-dynamic-import-node": "2.3.3",
  69. "chalk": "2.4.2",
  70. "chokidar": "2.1.5",
  71. "connect": "3.6.6",
  72. "eslint": "6.7.2",
  73. "eslint-plugin-vue": "6.2.2",
  74. "html-webpack-plugin": "3.2.0",
  75. "husky": "1.3.1",
  76. "lint-staged": "8.1.5",
  77. "mockjs": "1.0.1-beta3",
  78. "plop": "2.3.0",
  79. "runjs": "4.3.2",
  80. "sass": "1.26.2",
  81. "sass-loader": "8.0.2",
  82. "script-ext-html-webpack-plugin": "2.1.3",
  83. "serve-static": "1.13.2",
  84. "svg-sprite-loader": "4.1.3",
  85. "svgo": "1.2.0",
  86. "vue-template-compiler": "2.6.10"
  87. },
  88. "browserslist": [
  89. "> 1%",
  90. "last 2 versions"
  91. ],
  92. "bugs": {
  93. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  94. },
  95. "engines": {
  96. "node": ">=8.9",
  97. "npm": ">= 3.0.0"
  98. },
  99. "keywords": [
  100. "vue",
  101. "admin",
  102. "dashboard",
  103. "element-ui",
  104. "boilerplate",
  105. "admin-template",
  106. "management-system"
  107. ],
  108. "license": "MIT",
  109. "lint-staged": {
  110. "src/**/*.{js,vue}": [
  111. "eslint --fix",
  112. "git add"
  113. ]
  114. },
  115. "husky": {
  116. "hooks": {
  117. "pre-commit": "lint-staged"
  118. }
  119. },
  120. "repository": {
  121. "type": "git",
  122. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  123. }
  124. }