package.json 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "strides",
  3. "version": "2.0.0",
  4. "license": "MIT",
  5. "private": true,
  6. "scripts": {
  7. "android": "react-native run-android",
  8. "ios": "react-native run-ios --simulator='iPhone 14 Pro'",
  9. "start": "react-native start",
  10. "test": "jest",
  11. "lint": "eslint .",
  12. "release": "npx react-native run-android --variant=release",
  13. "bundle": "cd android & ./gradlew bundleRelease",
  14. "build:android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
  15. "build:ios": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios/bundle/main.jsbundle --assets-dest ios/bundle ",
  16. "clean": "cd android & ./gradlew clean",
  17. "apk": "cd android & ./gradlew assembleRelease",
  18. "reset": "react-native start --reset-cache",
  19. "sit:android": "appcenter codepush release-react -a vbe/ChargEcoAndroid -d Staging -t",
  20. "prod:android": "appcenter codepush release-react -a vbe/ChargEcoAndroid -d Production -t",
  21. "sit:ios": "appcenter codepush release-react -a vbe/ChargEcoiOS -d Staging -t",
  22. "prod:ios": "appcenter codepush release-react -a vbe/ChargEcoiOS -d Production -t",
  23. "push:android": "appcenter codepush release-react -a vbe/ChargEcoAndroid -d Production -t",
  24. "push:ios": "appcenter codepush release-react -a vbe/ChargEcoiOS -c ios/bundle -d Production -t"
  25. },
  26. "dependencies": {
  27. "@react-native-async-storage/async-storage": "^1.15.3",
  28. "@react-native-community/art": "^1.2.0",
  29. "@react-native-community/cameraroll": "^4.0.4",
  30. "@react-native-community/checkbox": "^0.5.7",
  31. "@react-native-community/geolocation": "^2.0.2",
  32. "@react-native-community/masked-view": "^0.1.10",
  33. "@react-native-community/push-notification-ios": "^1.8.0",
  34. "@react-navigation/drawer": "^5.12.5",
  35. "@react-navigation/material-top-tabs": "^5.3.19",
  36. "@react-navigation/native": "^5.9.4",
  37. "@react-navigation/stack": "^5.14.4",
  38. "appcenter": "^4.4.5",
  39. "appcenter-analytics": "^4.4.5",
  40. "appcenter-crashes": "^4.4.5",
  41. "axios": "^0.21.1",
  42. "react": "17.0.1",
  43. "react-native": "^0.64.4",
  44. "react-native-camera": "^3.43.5",
  45. "react-native-code-push": "^7.1.0",
  46. "react-native-device-info": "^8.3.1",
  47. "react-native-gesture-handler": "^1.10.3",
  48. "react-native-gradients": "^1.1.1",
  49. "react-native-i18n": "^2.0.15",
  50. "react-native-image-crop-picker": "^0.36.2",
  51. "react-native-map-clustering": "^3.4.2",
  52. "react-native-map-link": "^2.7.27",
  53. "react-native-maps": "^0.28.0",
  54. "react-native-modal": "^13.0.1",
  55. "react-native-modal-datetime-picker": "^13.1.2",
  56. "react-native-permissions": "3.0.1",
  57. "react-native-progress": "^4.1.2",
  58. "react-native-push-notification": "^7.3.1",
  59. "react-native-qrcode-scanner": "^1.5.4",
  60. "react-native-reanimated": "^2.1.0",
  61. "react-native-root-siblings": "^4.1.0",
  62. "react-native-root-toast": "^3.2.1",
  63. "react-native-safe-area-context": "^3.2.0",
  64. "react-native-screens": "^3.1.1",
  65. "react-native-share": "^6.1.0",
  66. "react-native-svg": "^12.1.1",
  67. "react-native-tab-view": "^2.16.0",
  68. "react-native-vector-icons": "^9.2.0",
  69. "react-native-view-shot": "^3.1.2",
  70. "react-native-webview": "^11.6.4",
  71. "supercluster": "^7.1.3",
  72. "vbe-cluster-map": "https://gitee.com/vbes/vbe-cluster-map.git",
  73. "victory-native": "^35.3.3"
  74. },
  75. "devDependencies": {
  76. "@babel/core": "^7.13.15",
  77. "@babel/runtime": "^7.13.10",
  78. "@react-native-community/eslint-config": "^2.0.0",
  79. "babel-jest": "^26.6.3",
  80. "eslint": "^7.24.0",
  81. "jest": "^26.6.3",
  82. "metro-react-native-babel-preset": "^0.65.2",
  83. "react-test-renderer": "17.0.1"
  84. },
  85. "jest": {
  86. "preset": "react-native"
  87. }
  88. }