package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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": "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. "@babel/polyfill": "^7.12.1",
  19. "ali-oss": "^6.13.2",
  20. "axios": "0.18.1",
  21. "babel-polyfill": "^6.26.0",
  22. "clipboard": "2.0.4",
  23. "codemirror": "5.45.0",
  24. "core-js": "3.6.5",
  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. "fuse.js": "3.4.4",
  31. "js-cookie": "2.2.0",
  32. "js-file-download": "^0.4.12",
  33. "jsonlint": "1.6.3",
  34. "lib-flexible": "^0.3.2",
  35. "lodash-es": "^4.17.20",
  36. "node-sass": "^4.14.1",
  37. "normalize.css": "7.0.0",
  38. "nprogress": "0.2.0",
  39. "path-to-regexp": "2.4.0",
  40. "plupload": "^2.3.6",
  41. "postcss-px2rem": "^0.3.0",
  42. "screenfull": "4.2.0",
  43. "script-loader": "0.7.2",
  44. "sortablejs": "1.8.4",
  45. "spark-md5": "^3.0.1",
  46. "tui-editor": "1.3.3",
  47. "vue": "2.6.10",
  48. "vue-count-to": "1.0.13",
  49. "vue-router": "3.0.2",
  50. "vue-splitpane": "1.0.4",
  51. "vuedraggable": "2.20.0",
  52. "vuex": "3.1.0",
  53. "xlsx": "0.14.1"
  54. },
  55. "devDependencies": {
  56. "@vue/cli-plugin-babel": "4.4.4",
  57. "@vue/cli-plugin-eslint": "4.4.4",
  58. "@vue/cli-plugin-unit-jest": "4.4.4",
  59. "@vue/cli-service": "4.4.4",
  60. "@vue/test-utils": "1.0.0-beta.29",
  61. "autoprefixer": "9.5.1",
  62. "babel-eslint": "10.1.0",
  63. "babel-jest": "23.6.0",
  64. "babel-plugin-dynamic-import-node": "2.3.3",
  65. "chalk": "2.4.2",
  66. "chokidar": "2.1.5",
  67. "connect": "3.6.6",
  68. "eslint": "6.7.2",
  69. "eslint-plugin-vue": "6.2.2",
  70. "html-webpack-plugin": "3.2.0",
  71. "husky": "1.3.1",
  72. "jszip": "^3.2.1",
  73. "lint-staged": "8.1.5",
  74. "plop": "2.3.0",
  75. "runjs": "4.3.2",
  76. "sass-loader": "8.0.2",
  77. "script-ext-html-webpack-plugin": "2.1.3",
  78. "serve-static": "1.13.2",
  79. "svg-sprite-loader": "4.1.3",
  80. "svgo": "1.2.0",
  81. "vue-template-compiler": "2.6.10"
  82. },
  83. "browserslist": [
  84. "> 1%",
  85. "last 2 versions"
  86. ],
  87. "bugs": {
  88. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  89. },
  90. "engines": {
  91. "node": ">=8.9",
  92. "npm": ">= 3.0.0"
  93. },
  94. "keywords": [
  95. "vue",
  96. "admin",
  97. "dashboard",
  98. "element-ui",
  99. "boilerplate",
  100. "admin-template",
  101. "management-system"
  102. ],
  103. "license": "MIT",
  104. "lint-staged": {
  105. "src/**/*.{js,vue}": [
  106. "eslint --fix",
  107. "git add"
  108. ]
  109. },
  110. "husky": {
  111. "hooks": {
  112. "pre-commit": "lint-staged"
  113. }
  114. },
  115. "repository": {
  116. "type": "git",
  117. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  118. }
  119. }