package.json 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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",
  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. },
  24. "dependencies": {
  25. "@react-native-async-storage/async-storage": "^1.15.3",
  26. "@react-native-community/art": "^1.2.0",
  27. "@react-native-community/cameraroll": "^4.0.4",
  28. "@react-native-community/checkbox": "^0.5.7",
  29. "@react-native-community/geolocation": "^2.0.2",
  30. "@react-native-community/masked-view": "^0.1.10",
  31. "@react-native-community/push-notification-ios": "^1.8.0",
  32. "@react-navigation/drawer": "^5.12.5",
  33. "@react-navigation/material-top-tabs": "^5.3.19",
  34. "@react-navigation/native": "^5.9.4",
  35. "@react-navigation/stack": "^5.14.4",
  36. "axios": "^0.21.1",
  37. "react": "17.0.1",
  38. "react-native": "0.64.2",
  39. "react-native-camera": "^3.43.5",
  40. "react-native-code-push": "6.4.1",
  41. "react-native-device-info": "^8.3.1",
  42. "react-native-gesture-handler": "^1.10.3",
  43. "react-native-gradients": "^1.1.1",
  44. "react-native-image-crop-picker": "^0.36.2",
  45. "react-native-map-clustering": "^3.4.2",
  46. "react-native-map-link": "^2.7.27",
  47. "react-native-maps": "^0.28.0",
  48. "react-native-modal": "^13.0.1",
  49. "react-native-modal-datetime-picker": "^13.1.2",
  50. "react-native-permissions": "^3.0.1",
  51. "react-native-progress": "^4.1.2",
  52. "react-native-push-notification": "^7.3.1",
  53. "react-native-qrcode-scanner": "^1.5.4",
  54. "react-native-reanimated": "^2.1.0",
  55. "react-native-root-siblings": "^4.1.0",
  56. "react-native-root-toast": "^3.2.1",
  57. "react-native-safe-area-context": "^3.2.0",
  58. "react-native-screens": "^3.1.1",
  59. "react-native-share": "^6.1.0",
  60. "react-native-svg": "^12.1.1",
  61. "react-native-tab-view": "^2.16.0",
  62. "react-native-vector-icons": "^9.2.0",
  63. "react-native-view-shot": "^3.1.2",
  64. "react-native-webview": "^11.6.4",
  65. "supercluster": "^7.1.3",
  66. "vbe-cluster-map": "1.0",
  67. "victory-native": "^35.3.3"
  68. },
  69. "devDependencies": {
  70. "@babel/core": "^7.13.15",
  71. "@babel/runtime": "^7.13.10",
  72. "@react-native-community/eslint-config": "^2.0.0",
  73. "babel-jest": "^26.6.3",
  74. "eslint": "^7.24.0",
  75. "jest": "^26.6.3",
  76. "metro-react-native-babel-preset": "^0.65.2",
  77. "react-test-renderer": "17.0.1"
  78. },
  79. "jest": {
  80. "preset": "react-native"
  81. }
  82. }