-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.8 KB
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
{
"name": "mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "cross-env EXPO_PUBLIC_APP_ENV=development npx expo start",
"start:prod": "cross-env EXPO_PUBLIC_APP_ENV=production npx expo start",
"build:dev": "eas build --no-wait -p all --profile=development",
"build:internal": "npm run build:dev -- --profile=internal",
"build:android:internal:local": "npm run build:internal -- --local -p android",
"build:debug": "npm run build:dev -- --profile=debug",
"build:stg": "npm run build:dev -- --profile=staging",
"build:prod": "npm run build:dev -- --profile=production",
"build:prod:external": "npm run build:dev -- --profile=production-external",
"build:android:prod:local": "npm run build:prod -- --local -p android",
"build:ios:debug:local": "cross-env APP_ENV=development eas build --no-wait -p ios --profile=debug --local",
"build:android:debug:local": "cross-env APP_ENV=development eas build --no-wait -p android --profile=debug --local",
"update:dev": "cross-env EXPO_PUBLIC_APP_ENV=development eas update --branch development",
"update:prod": "cross-env EXPO_PUBLIC_APP_ENV=production eas update --branch production",
"submit:dev": "cross-env EXPO_PUBLIC_APP_ENV=development eas submit --no-wait --profile=development",
"submit:prod": "cross-env EXPO_PUBLIC_APP_ENV=production eas submit --no-wait --profile=production",
"eas-build-post-install": "cd ../../ && node tools/scripts/eas-build-post-install.mjs . apps/mobile",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@likashefqet/react-native-image-zoom": "^4.3.0",
"@react-native-community/netinfo": "11.4.1",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-google-signin/google-signin": "^15.0.0",
"@react-navigation/drawer": "^7.3.9",
"@ronas-it/react-native-common-modules": "^1.1.0",
"@ronas-it/rtkq-entity-api": "^0.4.10",
"@shopify/flash-list": "2.0.2",
"@tanstack/react-query": "^5.80.6",
"@tanstack/react-query-persist-client": "^5.87.4",
"babel-plugin-module-resolver": "^5.0.2",
"clsx": "^2.1.1",
"expo": "~54.0.34",
"expo-asset": "~12.0.13",
"expo-audio": "~1.1.1",
"expo-build-properties": "~1.0.10",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-crypto": "~15.0.9",
"expo-dev-client": "~6.0.21",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.22",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-image-picker": "~17.0.11",
"expo-insights": "~0.10.8",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.12",
"expo-localization": "~17.0.8",
"expo-media-library": "~18.2.1",
"expo-router": "~6.0.23",
"expo-sharing": "~14.0.8",
"expo-speech": "~14.0.8",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-updates": "~29.0.17",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"luxon": "^3.6.1",
"nativewind": "^4.1.23",
"react": "19.1.0",
"react-hook-form": "^7.57.0",
"react-native": "0.81.5",
"react-native-compressor": "^1.12.0",
"react-native-extended-stylesheet": "^0.12.0",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "1.18.5",
"react-native-mmkv": "^3.2.0",
"react-native-modal": "^14.0.0-rc.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"reflect-metadata": "^0.2.2",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^3.4.17",
"yup": "^1.6.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.6.2"
},
"main": "expo-router/entry"
}