package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "capacitor-app",
  3. "version": "1.0.0",
  4. "description": "An Amazing Capacitor App",
  5. "main": "index.js",
  6. "scripts": {
  7. "serve": "vue-cli-service serve",
  8. "build": "vue-cli-service build && npx cap copy",
  9. "build-dev": "vue-cli-service build --mode development && npx cap copy",
  10. "lint": "vue-cli-service lint"
  11. },
  12. "keywords": [
  13. "capacitor",
  14. "mobile"
  15. ],
  16. "author": "",
  17. "license": "ISC",
  18. "dependencies": {
  19. "@capacitor-community/file-opener": "^1.0.5",
  20. "@capacitor/android": "^5.0.0",
  21. "@capacitor/app": "^5.0.2",
  22. "@capacitor/cli": "^5.0.0",
  23. "@capacitor/core": "^5.0.0",
  24. "@capacitor/filesystem": "^5.0.2",
  25. "@capacitor/ios": "^5.0.0",
  26. "@capacitor/status-bar": "^5.0.2",
  27. "axios": "^0.19.0",
  28. "babel-plugin-import": "^1.13.3",
  29. "capacitor-plugin-safe-area": "^2.0.0",
  30. "core-js": "^2.6.5",
  31. "crypto-js": "^4.1.1",
  32. "dayjs": "^1.10.4",
  33. "ip": "^1.1.5",
  34. "photoswipe": "^4.1.3",
  35. "probe-image-size": "^6.0.0",
  36. "qs": "^6.9.4",
  37. "resolve-url": "^0.2.1",
  38. "url-search-params-polyfill": "^7.0.0",
  39. "vant": "^2.12.3",
  40. "vconsole-webpack-plugin": "^1.4.2",
  41. "vue": "^2.6.10",
  42. "vue-bus": "^1.2.1",
  43. "vue-loading-template": "^1.3.2",
  44. "vue-meta": "^2.3.1",
  45. "vue-router": "^3.0.3",
  46. "vue2-toast": "^2.1.0",
  47. "vueg": "^1.4.5",
  48. "vuex": "^3.0.1"
  49. },
  50. "devDependencies": {
  51. "@vue/cli-plugin-babel": "^3.12.0",
  52. "@vue/cli-plugin-eslint": "^4.1.0",
  53. "@vue/cli-service": "^3.12.0",
  54. "@vue/eslint-config-prettier": "^5.0.0",
  55. "babel-eslint": "^10.0.3",
  56. "eslint": "^5.16.0",
  57. "eslint-plugin-prettier": "^3.1.1",
  58. "eslint-plugin-vue": "^5.0.0",
  59. "less": "^3.0.4",
  60. "less-loader": "^6.0.0",
  61. "lint-staged": "^9.5.0",
  62. "prettier": "^1.19.1",
  63. "style-resources-loader": "^1.2.1",
  64. "vue-cli-plugin-style-resources-loader": "^0.1.3",
  65. "vue-template-compiler": "^2.6.10"
  66. },
  67. "lint-staged": {
  68. "*.{js,vue}": [
  69. "vue-cli-service lint",
  70. "git add"
  71. ]
  72. }
  73. }