-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
141 lines (141 loc) · 6.03 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "ice",
"version": "0.0.2",
"private": true,
"scripts": {
"start": "yarn run:bundler",
"run:android": "react-native run-android --appIdSuffix=staging --active-arch-only",
"run:ios": "react-native run-ios",
"run:bundler": "react-native start --reset-cache",
"clean:android": "cd android && ./gradlew clean",
"android:releasestaging": "bundle exec fastlane android build type:apk",
"configure:staging": "cp -rf ../mobile-app-secrets/staging/* ./ && cp -a ../mobile-app-secrets/staging/ ./ && source .env",
"configure:production": "cp -rf ../mobile-app-secrets/production/* ./ && cp -a ../mobile-app-secrets/production/ ./ && source .env",
"match:read": "bundler exec fastlane match appstore --readonly && bundler exec fastlane match adhoc --readonly && bundler exec fastlane match development --readonly",
"match:renew": "bundler exec fastlane match adhoc --force_for_new_devices",
"test": "jest tests --coverage --updateSnapshot --passWithNoTests",
"generate-translation-types": "node scripts/generateTranslationTypes/index.mjs src/translations/locales/en.json && eslint --fix src/translations/locales/en.json.d.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"check-types": "tsc",
"postinstall": "npx jetify && npx patch-package",
"check-license": "./scripts/license/checklicense.sh",
"check-git-email": "./scripts/check-git-email.sh",
"e2e-build-ios-debug": "source .env && detox build --configuration ios.debug",
"e2e-test-ios-debug": "source .env && detox test --configuration ios.debug --loglevel trace --record-logs all",
"e2e-build-android-debug": "source .env && detox build --configuration android.debug",
"e2e-test-android-debug": "source .env && detox test --configuration android.debug --loglevel trace --record-logs all",
"e2e-build-ios-release": "source .env && detox clean-framework-cache && detox build-framework-cache && detox build --configuration ios.release",
"e2e-test-ios-release": "source .env && detox test --configuration ios.release --loglevel trace --record-logs all",
"e2e-build-android-release": "source .env && detox clean-framework-cache && detox build-framework-cache && detox build --configuration android.release",
"e2e-test-android-release": "source .env && detox test --configuration android.release --loglevel trace --record-logs all",
"prepare": "husky install",
"pod": "cd ios && pod install",
"pretty-staged": "pretty-quick --staged",
"compress-staged-images": "./scripts/compress-staged-images.sh",
"rebase-master": "git fetch origin master && git rebase origin/master && yarn"
},
"dependencies": {
"@invertase/react-native-apple-authentication": "^2.2.2",
"@notifee/react-native": "7.7.1",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-clipboard/clipboard": "^1.10.0",
"@react-native-community/netinfo": "^9.3.6",
"@react-native-firebase/app": "^18.8.0",
"@react-native-firebase/auth": "^18.8.0",
"@react-native-firebase/messaging": "^18.8.0",
"@react-native-google-signin/google-signin": "^10.0.1",
"@react-navigation/bottom-tabs": "^6.4.1",
"@react-navigation/native": "^6.0.14",
"@react-navigation/native-stack": "^6.9.2",
"@reduxjs/toolkit": "^1.9.0",
"axios": "1.2.0",
"cldr-compact-number": "^0.4.0",
"dayjs": "^1.11.6",
"expo": "^49.0.0",
"expo-haptics": "12.6.0",
"i18n-js": "^4.4.3",
"immer": "^9.0.16",
"lodash": "^4.17.21",
"lottie-react-native": "^6.3.1",
"make-plural": "^7.3.0",
"node-libs-browser": "^2.2.1",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-bootsplash": "^5.1.3",
"react-native-config": "^1.5.1",
"react-native-fbsdk-next": "^11.1.0",
"react-native-flipper": "0.163.0",
"react-native-gesture-handler": "^2.13.4",
"react-native-inappbrowser-reborn": "^3.7.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-localize": "^2.2.4",
"react-native-permissions": "^3.6.1",
"react-native-reanimated": "^3.5.4",
"react-native-restart": "^0.0.27",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.22.1",
"react-native-svg": "^13.6.0",
"react-native-url-polyfill": "^1.3.0",
"react-redux": "^8.0.5",
"react-string-replace": "^1.1.0",
"redux": "^4.2.0",
"redux-flipper": "^2.0.2",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.1",
"rn-android-keyboard-adjust": "^2.1.2",
"rn-units": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/load": "^17.3.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.1",
"@react-native/typescript-config": "^0.73.1",
"@testing-library/jest-native": "^5.3.0",
"@testing-library/react-native": "^11.5.0",
"@types/i18n-js": "^3.8.3",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"@types/url-parse": "^1.4.8",
"babel-jest": "^29.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"detox": "^20.0.3",
"eslint": "^8.19.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"jest": "29.6.3",
"jest-circus": "^29.3.1",
"jetifier": "^2.0.0",
"metro-react-native-babel-preset": "0.76.7",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.8.0",
"pretty-quick": "^3.1.3",
"react-test-renderer": "18.2.0",
"tinypng-cli": "^0.0.7",
"ts-jest": "^29.0.3",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"expo": {
"autolinking": {
"exclude": [
"expo-application",
"expo-constants",
"expo-font"
]
}
}
}