-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "one-local",
"version": "8.2.0",
"private": true,
"scripts": {
"start": "npm run start:development",
"start:development": "NODE_ENV=development react-native start",
"start:staging": "NODE_ENV=staging react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"lint": "eslint .",
"test": "jest",
"pod": "cd ios && pod install && cd ..",
"build:android": "cd android && ./gradlew app:assembleRelease && cd ..",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios'",
"testflight": "num run testflight:dev",
"testflight:dev": "cd ios && bundle exec fastlane build_dev_upload_testflight && cd ..",
"testflight:beta": "cd ios && bundle exec fastlane build_beta_upload_testflight && cd ..",
"testflight:prod": "cd ios && bundle exec fastlane build_prod_upload_testflight && cd ..",
"playstore:dev": "cd android && bundle exec fastlane build_dev_upload_playstore && cd ..",
"playstore:beta": "cd android && bundle exec fastlane build_beta_upload_playstore && cd ..",
"playstore:prod": "cd android && bundle exec fastlane build_prod_upload_playstore && cd .."
},
"dependencies": {
"@fawazahmed/react-native-read-more": "^3.0.4",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-native-fontawesome": "^0.3.2",
"@invertase/react-native-apple-authentication": "^2.3.0",
"@notifee/react-native": "^7.8.2",
"@react-native-async-storage/async-storage": "^1.19.0",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-community/datetimepicker": "^7.6.4",
"@react-native-community/netinfo": "^9.4.1",
"@react-native-firebase/app": "^20.1.0",
"@react-native-firebase/messaging": "^20.1.0",
"@react-native-google-signin/google-signin": "^11.0.0",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.7",
"@react-navigation/stack": "^6.3.17",
"@reduxjs/toolkit": "^1.9.5",
"@rnmapbox/maps": "^10.1.33",
"@sentry/react-native": "^5.24.1",
"@stripe/stripe-react-native": "^0.37.3",
"@tanstack/react-query": "^5.45.0",
"axios": "^1.4.0",
"big.js": "^6.2.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"moment": "^2.29.4",
"react": "18.2.0",
"react-hook-form": "^7.52.0",
"react-native": "0.73.7",
"react-native-camera": "^4.2.1",
"react-native-device-info": "^10.7.0",
"react-native-eject": "^0.2.0",
"react-native-elements": "^3.4.3",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.17.1",
"react-native-google-places-autocomplete": "^2.5.6",
"react-native-image-crop-picker": "^0.40.2",
"react-native-image-picker": "^7.1.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-logs": "^5.1.0",
"react-native-modal-datetime-picker": "^17.0.0",
"react-native-paper": "^5.9.1",
"react-native-paper-dates": "^0.18.12",
"react-native-permissions": "^4.0.1",
"react-native-popover-view": "^5.1.8",
"react-native-reanimated": "^3.12.1",
"react-native-reanimated-carousel": "^3.5.1",
"react-native-safe-area-context": "^4.10.5",
"react-native-screens": "~3.29.0",
"react-native-simple-toast": "^3.1.0",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^15.3.0",
"react-native-swiper": "^1.6.0",
"react-native-vector-icons": "^10.0.0",
"react-native-webview": "^13.2.3",
"react-redux": "^8.1.1",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"semver": "^7.6.2",
"watchman": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.24.4",
"@eslint/js": "^9.5.0",
"@react-native/eslint-config": "^0.74.84",
"@react-native/metro-config": "^0.72.7",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@tsconfig/react-native": "^3.0.0",
"@types/big.js": "^6.2.2",
"@types/lodash": "^4.17.1",
"@types/luxon": "^3.4.2",
"@types/metro-config": "^0.76.3",
"@types/react": "^18.2.39",
"@types/react-native-google-signin": "^1.0.7",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"globals": "^15.4.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.76.5",
"prettier": "2.8.8",
"react-native-dotenv": "^3.4.11",
"react-test-renderer": "18.2.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=18"
}
}