forked from Samuel1-ona/hunty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.39 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 5.39 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
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
{
"name": "mobile",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest",
"test:coverage": "jest --coverage",
"store:validate": "node scripts/validate-store-metadata.js",
"store:generate": "node scripts/generate-store-assets.js",
"test:e2e": "maestro test .maestro/flows/feed-and-wallet.yaml",
"test:e2e:validate": "node scripts/validate-maestro-baseline.js",
"eas:init": "eas init",
"eas:credentials": "eas credentials",
"eas:secrets": "eas secret:create",
"build:android": "eas build --platform android --profile production",
"build:ios": "eas build --platform ios --profile production",
"build:all": "eas build --platform all --profile production",
"build:preview": "eas build --platform all --profile preview",
"build:production": "eas build --platform all --profile production",
"build:android:dev": "eas build --platform android --profile development --local",
"build:ios:dev": "eas build --platform ios --profile development --local",
"build:android:preview": "eas build --platform android --profile preview",
"build:ios:preview": "eas build --platform ios --profile preview",
"build:all:preview": "eas build --platform all --profile preview",
"build:android:prod": "eas build --platform android --profile production",
"build:ios:prod": "eas build --platform ios --profile production",
"build:all:prod": "eas build --platform all --profile production",
"update:development": "eas update --channel development --branch development",
"update:preview": "eas update --channel preview --branch preview --message \"Preview OTA update\"",
"update:production": "eas update --channel production --branch production --message \"Production OTA update\"",
"update:development:check": "eas update:configure-codepush --channel development",
"update:preview:check": "eas update:configure-codepush --channel preview",
"update:production:check": "eas update:configure-codepush --channel production",
"submit:preview:android": "eas submit --platform android --profile preview",
"submit:preview:ios": "eas submit --platform ios --profile preview",
"submit:production:android": "eas submit --platform android --profile production",
"submit:production:ios": "eas submit --platform ios --profile production",
"submit:android": "eas submit --platform android --profile production",
"submit:ios": "eas submit --platform ios --profile production",
"submit:all": "eas submit --platform all --profile production"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.11",
"@hunty/types": "workspace:*",
"@hunty/ui": "workspace:*",
"@gorhom/bottom-sheet": "^5.2.14",
"@hunty/types": "workspace:*",
"@hunty/ui": "workspace:*",
"@react-native-async-storage/async-storage": "^2.0.0",
"@sentry/react-native": "~6.3.0",
"@stellar/stellar-sdk": "^14.5.0",
"@tanstack/react-query": "^5.100.5",
"@walletconnect/core": "^2.18.0",
"@walletconnect/modal-react-native": "^1.1.0",
"@walletconnect/sign-client": "^2.18.0",
"buffer": "^6.0.3",
"expo-crypto": "~13.0.2",
"expo-local-authentication": "~13.0.0",
"expo-random": "~14.0.0",
"dotenv": "^17.4.2",
"expo": "~55.0.0",
"expo-camera": "~55.0.19",
"expo-constants": "~55.0.16",
"expo-dev-client": "~55.0.35",
"expo-device": "~55.0.17",
"expo-file-system": "~55.0.22",
"expo-font": "~55.0.8",
"expo-haptics": "~55.0.14",
"expo-image": "~55.0.11",
"expo-linear-gradient": "~55.0.0",
"expo-linking": "~55.0.15",
"expo-location": "~55.1.10",
"expo-notifications": "~55.0.23",
"expo-router": "~55.0.16",
"expo-secure-store": "^55.0.13",
"expo-splash-screen": "~55.0.21",
"expo-status-bar": "~55.0.6",
"expo-task-manager": "~55.0.10",
"lucide-react-native": "^1.16.0",
"react": "19.2.0",
"react-native": "0.83.6",
"react-native-gesture-handler": "~2.30.0",
"react-native-get-random-values": "^1.11.0",
"react-native-maps": "1.27.2",
"react-native-modal": "^13.0.1",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-worklets": "^0.9.1",
"text-encoding": "^0.7.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.17",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-expo": "~55.0.0",
"eas-cli": "^7.1.0",
"@hunty/config": "workspace:*",
"jest": "^29.7.0",
"@storybook/react-native": "^10.4.7",
"jest-expo": "~55.0.5",
"nativewind": "^4.1.23",
"tailwindcss": "3.4.17",
"eslint": "^9.0.0",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.2.0",
"prettier": "^3.5.0",
"typescript": "~5.9.3"
},
"private": true
}