-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.7 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
{
"name": "couchers.org",
"main": "expo-router/entry",
"version": "1.1.18",
"scripts": {
"start": "expo start",
"start:localhost": "expo start --localhost",
"build:protos": "bash ./ci-build-protos.sh",
"eas-build-pre-install": "npm run build:protos",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint",
"format": "expo lint --fix && prettier --write .",
"test": "jest",
"release:ios:staging": "eas build --platform ios --profile staging --auto-submit",
"release:ios:production": "eas build --platform ios --profile production --auto-submit",
"release:android:staging": "eas build --platform android --profile staging --auto-submit",
"release:android:production": "eas build --platform android --profile production --auto-submit"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
]
},
"dependencies": {
"@expo-google-fonts/ubuntu": "^0.4.1",
"@expo/cli": "^55.0.0-canary-20260105-6b962e6",
"@expo/vector-icons": "^15.0.3",
"@expo/xcpretty": "^4.3.2",
"@react-navigation/drawer": "^7.3.9",
"@react-navigation/native": "^7.1.6",
"expo": "~54.0.34",
"expo-build-properties": "^1.0.10",
"expo-constants": "~18.0.11",
"expo-dev-client": "~6.0.21",
"expo-device": "~8.0.10",
"expo-font": "~14.0.11",
"expo-image-picker": "~17.0.11",
"expo-linking": "~8.0.12",
"expo-notifications": "~0.32.17",
"expo-router": "~6.0.23",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "^3.0.9",
"expo-system-ui": "~6.0.9",
"expo-updates": "~29.0.17",
"google-protobuf": "^4.0.0",
"grpc-web": "^2.0.1",
"i18next": "^25.0.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^15.7.3",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@testing-library/react-native": "^13.3.3",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.1",
"@types/react": "~19.1.10",
"@types/react-dom": "~19.1.7",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "~29.7.0",
"jest-expo": "~54.0.17",
"knip": "^5.71.0",
"prettier": "^3.4.2",
"typescript": "~5.9.2"
},
"private": true
}