package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "name": "vue-element-admin",
  3. "version": "4.2.1",
  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. "license": "MIT",
  7. "scripts": {
  8. "dev": "vue-cli-service serve",
  9. "build:prod": "vue-cli-service build --report",
  10. "build:stage": "vue-cli-service build --mode staging",
  11. "preview": "node build/index.js --preview",
  12. "lint": "eslint --ext .js,.vue src",
  13. "test:unit": "jest --clearCache && vue-cli-service test:unit",
  14. "test:ci": "npm run lint && npm run test:unit",
  15. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
  16. "new": "plop"
  17. },
  18. "husky": {
  19. "hooks": {
  20. "pre-commit": "lint-staged"
  21. }
  22. },
  23. "lint-staged": {
  24. "src/**/*.{js,vue}": [
  25. "eslint --fix",
  26. "git add"
  27. ]
  28. },
  29. "keywords": [
  30. "vue",
  31. "admin",
  32. "dashboard",
  33. "element-ui",
  34. "boilerplate",
  35. "admin-template",
  36. "management-system"
  37. ],
  38. "repository": {
  39. "type": "git",
  40. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  41. },
  42. "bugs": {
  43. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  44. },
  45. "dependencies": {
  46. "@tinymce/tinymce-vue": "^3.0.1",
  47. "axios": "0.18.1",
  48. "clipboard": "2.0.4",
  49. "codemirror": "5.45.0",
  50. "driver.js": "0.9.5",
  51. "dropzone": "5.5.1",
  52. "echarts": "4.2.1",
  53. "element-ui": "^2.13.0",
  54. "file-saver": "2.0.1",
  55. "fuse.js": "3.4.4",
  56. "js-cookie": "2.2.0",
  57. "jsonlint": "1.6.3",
  58. "jszip": "3.2.1",
  59. "node-sass": "^4.14.1",
  60. "normalize.css": "7.0.0",
  61. "nprogress": "0.2.0",
  62. "path-to-regexp": "2.4.0",
  63. "qrcode-decoder": "^0.1.2",
  64. "screenfull": "4.2.0",
  65. "showdown": "^1.9.1",
  66. "sortablejs": "^1.8.4",
  67. "tinymce": "^5.1.3",
  68. "tui-editor": "1.3.3",
  69. "v-distpicker": "^1.2.2",
  70. "vue": "2.6.10",
  71. "vue-count-to": "1.0.13",
  72. "vue-i18n": "7.3.2",
  73. "vue-router": "3.0.2",
  74. "vue-splitpane": "1.0.4",
  75. "vuedraggable": "2.20.0",
  76. "vuex": "3.1.0",
  77. "xlsx": "0.14.1"
  78. },
  79. "devDependencies": {
  80. "@babel/core": "7.0.0",
  81. "@babel/register": "7.0.0",
  82. "@vue/cli-plugin-babel": "3.5.3",
  83. "@vue/cli-plugin-eslint": "^3.9.1",
  84. "@vue/cli-plugin-unit-jest": "3.5.3",
  85. "@vue/cli-service": "3.5.3",
  86. "@vue/test-utils": "1.0.0-beta.29",
  87. "autoprefixer": "^9.5.1",
  88. "babel-core": "7.0.0-bridge.0",
  89. "babel-eslint": "10.0.1",
  90. "babel-jest": "23.6.0",
  91. "chalk": "2.4.2",
  92. "chokidar": "2.1.5",
  93. "connect": "3.6.6",
  94. "eslint": "5.15.3",
  95. "eslint-plugin-vue": "5.2.2",
  96. "html-webpack-plugin": "3.2.0",
  97. "husky": "1.3.1",
  98. "lint-staged": "8.1.5",
  99. "mockjs": "1.0.1-beta3",
  100. "plop": "2.3.0",
  101. "runjs": "^4.3.2",
  102. "sass-loader": "^7.1.0",
  103. "script-ext-html-webpack-plugin": "2.1.3",
  104. "script-loader": "0.7.2",
  105. "serve-static": "^1.13.2",
  106. "svg-sprite-loader": "4.1.3",
  107. "svgo": "1.2.0",
  108. "vue-template-compiler": "2.6.10",
  109. "webpack-bundle-analyzer": "^3.6.0"
  110. },
  111. "engines": {
  112. "node": ">=8.9",
  113. "npm": ">= 3.0.0"
  114. },
  115. "browserslist": [
  116. "> 1%",
  117. "last 2 versions"
  118. ]
  119. }