package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {
  2. "name": "vue-element-admin",
  3. "version": "3.11.0",
  4. "description": "A magical vue admin. Typical templates 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": "cross-env BABEL_ENV=development webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
  9. "build:prod": "cross-env NODE_ENV=production env_config=prod node build/build.js",
  10. "build:sit": "cross-env NODE_ENV=production env_config=sit node build/build.js",
  11. "lint": "eslint --ext .js,.vue src",
  12. "test": "npm run lint",
  13. "precommit": "lint-staged",
  14. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml"
  15. },
  16. "lint-staged": {
  17. "src/**/*.{js,vue}": [
  18. "eslint --fix",
  19. "git add"
  20. ]
  21. },
  22. "keywords": [
  23. "vue",
  24. "element-ui",
  25. "admin",
  26. "management-system",
  27. "admin-template"
  28. ],
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  35. },
  36. "dependencies": {
  37. "axios": "0.18.0",
  38. "clipboard": "1.7.1",
  39. "codemirror": "5.39.2",
  40. "driver.js": "0.8.1",
  41. "dropzone": "5.2.0",
  42. "echarts": "4.1.0",
  43. "element-ui": "2.4.11",
  44. "file-saver": "1.3.8",
  45. "fuse.js": "3.4.2",
  46. "js-cookie": "2.2.0",
  47. "jsonlint": "1.6.3",
  48. "jszip": "3.1.5",
  49. "mockjs": "1.0.1-beta3",
  50. "normalize.css": "7.0.0",
  51. "nprogress": "0.2.0",
  52. "screenfull": "4.0.0",
  53. "showdown": "1.8.6",
  54. "sortablejs": "1.7.0",
  55. "tui-editor": "1.2.7",
  56. "vue": "2.5.17",
  57. "vue-count-to": "1.0.13",
  58. "vue-i18n": "7.3.2",
  59. "vue-router": "3.0.2",
  60. "vue-splitpane": "1.0.2",
  61. "vuedraggable": "^2.16.0",
  62. "vuex": "3.0.1",
  63. "xlsx": "^0.11.16"
  64. },
  65. "devDependencies": {
  66. "autoprefixer": "8.5.0",
  67. "babel-core": "6.26.3",
  68. "babel-eslint": "8.2.6",
  69. "babel-helper-vue-jsx-merge-props": "2.0.3",
  70. "babel-loader": "7.1.5",
  71. "babel-plugin-dynamic-import-node": "2.0.0",
  72. "babel-plugin-syntax-jsx": "6.18.0",
  73. "babel-plugin-transform-runtime": "6.23.0",
  74. "babel-plugin-transform-vue-jsx": "3.7.0",
  75. "babel-preset-env": "1.7.0",
  76. "babel-preset-stage-2": "6.24.1",
  77. "chalk": "2.4.1",
  78. "compression-webpack-plugin": "2.0.0",
  79. "connect": "3.6.6",
  80. "copy-webpack-plugin": "4.5.2",
  81. "cross-env": "5.2.0",
  82. "css-loader": "1.0.0",
  83. "eslint": "5.15.2",
  84. "eslint-friendly-formatter": "4.0.1",
  85. "eslint-loader": "2.1.2",
  86. "eslint-plugin-vue": "5.2.2",
  87. "file-loader": "1.1.11",
  88. "friendly-errors-webpack-plugin": "1.7.0",
  89. "hash-sum": "1.0.2",
  90. "html-webpack-plugin": "4.0.0-alpha",
  91. "husky": "0.14.3",
  92. "lint-staged": "7.2.2",
  93. "mini-css-extract-plugin": "0.4.1",
  94. "node-notifier": "5.2.1",
  95. "node-sass": "^4.7.2",
  96. "optimize-css-assets-webpack-plugin": "5.0.0",
  97. "ora": "3.0.0",
  98. "path-to-regexp": "2.4.0",
  99. "portfinder": "1.0.13",
  100. "postcss-import": "11.1.0",
  101. "postcss-loader": "2.1.6",
  102. "postcss-url": "7.3.2",
  103. "rimraf": "2.6.2",
  104. "sass-loader": "7.0.3",
  105. "script-ext-html-webpack-plugin": "2.0.1",
  106. "script-loader": "0.7.2",
  107. "semver": "5.5.0",
  108. "serve-static": "1.13.2",
  109. "shelljs": "0.8.2",
  110. "svg-sprite-loader": "3.8.0",
  111. "svgo": "1.0.5",
  112. "uglifyjs-webpack-plugin": "1.2.7",
  113. "url-loader": "1.0.1",
  114. "vue-loader": "15.3.0",
  115. "vue-style-loader": "4.1.2",
  116. "vue-template-compiler": "2.5.17",
  117. "webpack": "4.16.5",
  118. "webpack-bundle-analyzer": "2.13.1",
  119. "webpack-cli": "3.1.0",
  120. "webpack-dev-server": "3.1.14",
  121. "webpack-merge": "4.1.4"
  122. },
  123. "engines": {
  124. "node": ">= 6.0.0",
  125. "npm": ">= 3.0.0"
  126. },
  127. "browserslist": [
  128. "> 1%",
  129. "last 2 versions",
  130. "not ie <= 8"
  131. ]
  132. }