package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "vue-element-admin",
  3. "version": "4.0.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": "vue-cli-service serve",
  9. "build:prod": "vue-cli-service build",
  10. "build:stage": "vue-cli-service build --mode staging",
  11. "build:preview": "node build/index.js --preview",
  12. "build:report": "node build/index.js --report",
  13. "lint": "eslint --ext .js,.vue src",
  14. "test": "npm run lint",
  15. "test:unit": "vue-cli-service test:unit",
  16. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
  17. "new": "plop"
  18. },
  19. "husky": {
  20. "hooks": {
  21. "pre-commit": "lint-staged"
  22. }
  23. },
  24. "lint-staged": {
  25. "src/**/*.{js,vue}": [
  26. "eslint --fix",
  27. "git add"
  28. ]
  29. },
  30. "keywords": [
  31. "vue",
  32. "element-ui",
  33. "admin",
  34. "management-system",
  35. "admin-template"
  36. ],
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  43. },
  44. "dependencies": {
  45. "axios": "0.18.0",
  46. "clipboard": "1.7.1",
  47. "codemirror": "5.44.0",
  48. "driver.js": "0.9.5",
  49. "dropzone": "5.5.1",
  50. "echarts": "4.1.0",
  51. "element-ui": "2.6.1",
  52. "file-saver": "2.0.1",
  53. "fuse.js": "3.4.4",
  54. "js-cookie": "2.2.0",
  55. "jsonlint": "1.6.3",
  56. "jszip": "3.2.0",
  57. "normalize.css": "7.0.0",
  58. "nprogress": "0.2.0",
  59. "path-to-regexp": "2.4.0",
  60. "screenfull": "4.0.1",
  61. "showdown": "1.9.0",
  62. "sortablejs": "1.8.3",
  63. "tui-editor": "1.3.2",
  64. "vue": "2.6.8",
  65. "vue-count-to": "1.0.13",
  66. "vue-i18n": "7.3.2",
  67. "vue-router": "3.0.2",
  68. "vue-splitpane": "1.0.2",
  69. "vuedraggable": "2.17.0",
  70. "vuex": "3.1.0",
  71. "xlsx": "0.14.1"
  72. },
  73. "devDependencies": {
  74. "@babel/core": "7.0.0",
  75. "@babel/register": "7.0.0",
  76. "@vue/cli-plugin-babel": "3.5.0",
  77. "@vue/cli-plugin-unit-jest": "3.5.0",
  78. "@vue/cli-service": "3.5.0",
  79. "@vue/test-utils": "1.0.0-beta.29",
  80. "babel-core": "7.0.0-bridge.0",
  81. "babel-eslint": "10.0.1",
  82. "babel-jest": "23.6.0",
  83. "chalk": "2.4.2",
  84. "connect": "3.6.6",
  85. "eslint": "5.15.1",
  86. "eslint-plugin-vue": "5.2.2",
  87. "husky": "1.3.1",
  88. "lint-staged": "7.2.2",
  89. "mockjs": "1.0.1-beta3",
  90. "node-sass": "^4.9.0",
  91. "plop": "2.3.0",
  92. "runjs": "^4.3.2",
  93. "sass-loader": "^7.1.0",
  94. "script-ext-html-webpack-plugin": "2.1.3",
  95. "script-loader": "0.7.2",
  96. "serve-static": "^1.13.2",
  97. "svg-sprite-loader": "4.1.3",
  98. "svgo": "1.2.0",
  99. "vue-template-compiler": "2.6.8"
  100. },
  101. "engines": {
  102. "node": ">=8.9",
  103. "npm": ">= 3.0.0"
  104. },
  105. "browserslist": [
  106. "> 1%",
  107. "last 2 versions",
  108. "not ie <= 8"
  109. ]
  110. }