package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "iview-admin",
  3. "version": "2.0.0",
  4. "author": "Lison<lison16new@163.com>",
  5. "private": false,
  6. "scripts": {
  7. "dev": "vue-cli-service serve --mode dev",
  8. "build_test": "vue-cli-service build --mode test",
  9. "build_uat": "vue-cli-service build --mode uat",
  10. "build_pro": "vue-cli-service build --mode pro",
  11. "build_lib": "vue-cli-service build --target dk --name dk dk/index.js",
  12. "lint": "vue-cli-service lint",
  13. "test:unit": "vue-cli-service test:unit",
  14. "test:e2e": "vue-cli-service test:e2e"
  15. },
  16. "dependencies": {
  17. "@babel/plugin-proposal-optional-chaining": "^7.18.9",
  18. "axios": "^0.18.0",
  19. "concurrent-tasks": "^1.0.7",
  20. "core-js": "^2.6.12",
  21. "js-base64": "^3.7.3",
  22. "js-cookie": "^2.2.0",
  23. "js-md5": "^0.7.3",
  24. "vant": "^2.12.53",
  25. "vconsole": "^3.15.0",
  26. "vue": "^2.7.14",
  27. "vue-i18n": "^7.8.0",
  28. "vue-jsonp": "^2.0.0",
  29. "vue-plugin-hiprint": "0.0.53-beta11",
  30. "vue-property-decorator": "^9.1.2",
  31. "vue-router": "3.0.0",
  32. "vuex": "^3.0.1",
  33. "vuex-persistedstate": "^2.5.4",
  34. "xe-ajax": "^4.0.5",
  35. "xe-utils": "^3.5.7"
  36. },
  37. "devDependencies": {
  38. "@vue/cli-plugin-babel": "^3.0.1",
  39. "@vue/cli-plugin-eslint": "^3.0.1",
  40. "@vue/cli-plugin-unit-mocha": "^3.0.1",
  41. "@vue/cli-service": "^3.0.1",
  42. "@vue/eslint-config-standard": "^3.0.0-beta.10",
  43. "babel-plugin-component": "^1.1.1",
  44. "babel-plugin-import": "^1.13.0",
  45. "bootstrap": "^4.3.1",
  46. "chai": "^4.3.7",
  47. "eslint-plugin-cypress": "^2.0.1",
  48. "flag-icon-css": "^3.4.6",
  49. "friendly-errors-webpack-plugin": "^1.7.0",
  50. "javascript-natural-sort": "^0.7.1",
  51. "less": "^2.7.3",
  52. "less-loader": "^4.0.5",
  53. "lint-staged": "^6.0.0",
  54. "node-sass": "4.14.1",
  55. "sass-loader": "8.0.0",
  56. "uuid": "^3.3.2",
  57. "vue-template-compiler": "^2.7.14"
  58. },
  59. "browserslist": [
  60. "> 1%",
  61. "last 2 versions",
  62. "not ie <= 8"
  63. ],
  64. "gitHooks": {
  65. "pre-commit": "lint-staged"
  66. },
  67. "app-plus": {
  68. "softinputMode": "adjustPan"
  69. },
  70. "lint-staged": {
  71. "*.js": [
  72. "vue-cli-service lint",
  73. "git add"
  74. ],
  75. "*.vue": [
  76. "vue-cli-service lint",
  77. "git add"
  78. ]
  79. }
  80. }