package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "zd-app-web",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "lint": "vue-cli-service lint",
  9. "upload:pro": "python upload.py /usr/share/nginx/html/zaojiao/ app_web pro",
  10. "upload:dev": "python upload.py /usr/share/nginx/html/ app_web dev"
  11. },
  12. "dependencies": {
  13. "@rive-app/canvas": "^1.1.4",
  14. "@types/qrcode": "^1.5.0",
  15. "@vant/use": "^1.5.2",
  16. "axios": "^1.3.4",
  17. "dayjs": "^1.11.7",
  18. "flicker-vue-hooks": "^1.0.10",
  19. "html2canvas": "^1.4.1",
  20. "lib-flexible": "^0.3.2",
  21. "normalize.css": "^8.0.1",
  22. "pinia": "^2.0.34",
  23. "postcss-pxtorem": "5.1.1",
  24. "qrcode": "^1.5.1",
  25. "vant": "^4.0.10",
  26. "vconsole": "^3.15.0",
  27. "vue": "^3.0.0",
  28. "vue-class-component": "^8.0.0-0",
  29. "vue-router": "^4.0.0-0",
  30. "weixin-js-sdk": "^1.6.0"
  31. },
  32. "devDependencies": {
  33. "@typescript-eslint/eslint-plugin": "^4.18.0",
  34. "@typescript-eslint/parser": "^4.18.0",
  35. "@vue/cli-plugin-eslint": "~4.5.12",
  36. "@vue/cli-plugin-router": "~4.5.12",
  37. "@vue/cli-plugin-typescript": "~4.5.12",
  38. "@vue/cli-plugin-vuex": "~4.5.12",
  39. "@vue/cli-service": "~4.5.12",
  40. "@vue/compiler-sfc": "^3.0.0",
  41. "@vue/eslint-config-standard": "^5.1.2",
  42. "@vue/eslint-config-typescript": "^7.0.0",
  43. "eslint": "^6.7.2",
  44. "eslint-plugin-import": "^2.20.2",
  45. "eslint-plugin-node": "^11.1.0",
  46. "eslint-plugin-promise": "^4.2.1",
  47. "eslint-plugin-standard": "^4.0.0",
  48. "eslint-plugin-vue": "^7.0.0",
  49. "lint-staged": "^9.5.0",
  50. "node-sass": "^4.12.0",
  51. "sass-loader": "^8.0.2",
  52. "typescript": "~4.1.5",
  53. "unplugin-vue-components": "^0.23.0"
  54. },
  55. "gitHooks": {
  56. "pre-commit": "lint-staged"
  57. },
  58. "lint-staged": {
  59. "*.{js,jsx,vue,ts,tsx}": [
  60. "vue-cli-service lint",
  61. "git add"
  62. ]
  63. }
  64. }