package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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",
  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. "axios": "0.18.1",
  47. "clipboard": "2.0.4",
  48. "codemirror": "5.49.0",
  49. "driver.js": "0.9.7",
  50. "dropzone": "5.5.1",
  51. "echarts": "4.3.0",
  52. "element-ui": "2.12.0",
  53. "file-saver": "2.0.2",
  54. "fuse.js": "3.4.5",
  55. "js-cookie": "2.2.1",
  56. "jsonlint": "1.6.3",
  57. "jszip": "3.2.2",
  58. "normalize.css": "7.0.0",
  59. "nprogress": "0.2.0",
  60. "path-to-regexp": "2.4.0",
  61. "screenfull": "5.0.0",
  62. "showdown": "1.9.0",
  63. "sortablejs": "1.10.1",
  64. "tui-editor": "1.4.7",
  65. "vue": "2.6.10",
  66. "vue-count-to": "1.0.13",
  67. "vue-router": "3.1.3",
  68. "vue-splitpane": "1.0.4",
  69. "vuedraggable": "2.23.2",
  70. "vuex": "3.1.1",
  71. "xlsx": "0.15.1"
  72. },
  73. "devDependencies": {
  74. "@babel/core": "7.0.0",
  75. "@babel/register": "7.0.0",
  76. "@vue/cli-plugin-babel": "3.11.0",
  77. "@vue/cli-plugin-eslint": "3.11.0",
  78. "@vue/cli-plugin-unit-jest": "3.11.0",
  79. "@vue/cli-service": "3.11.0",
  80. "@vue/test-utils": "1.0.0-beta.29",
  81. "autoprefixer": "^9.5.1",
  82. "babel-core": "7.0.0-bridge.0",
  83. "babel-eslint": "10.0.3",
  84. "babel-jest": "24.9.0",
  85. "chalk": "2.4.2",
  86. "chokidar": "3.1.1",
  87. "connect": "3.7.0",
  88. "eslint": "6.5.1",
  89. "eslint-plugin-vue": "5.2.3",
  90. "html-webpack-plugin": "3.2.0",
  91. "husky": "3.0.8",
  92. "lint-staged": "9.4.2",
  93. "mockjs": "1.0.1-beta3",
  94. "node-sass": "^4.9.0",
  95. "plop": "2.4.0",
  96. "tasksfile": "5.1.0",
  97. "sass-loader": "^7.1.0",
  98. "script-ext-html-webpack-plugin": "2.1.4",
  99. "script-loader": "0.7.2",
  100. "serve-static": "^1.13.2",
  101. "svg-sprite-loader": "4.1.6",
  102. "svgo": "1.3.0",
  103. "vue-template-compiler": "2.6.10"
  104. },
  105. "engines": {
  106. "node": ">=8.9",
  107. "npm": ">= 3.0.0"
  108. },
  109. "browserslist": [
  110. "> 1%",
  111. "last 2 versions"
  112. ]
  113. }