-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.5 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.5 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
{
"name": "cyd-mobile",
"main": "expo-router/entry",
"version": "1.0.15",
"scripts": {
"start": "expo start",
"prebuild": "expo prebuild --clean",
"android": "expo run:android --device",
"ios": "expo run:ios --device",
"ios:release": "npx expo run:ios --configuration Release --device",
"build:ios": "eas build --platform ios --profile production --local --non-interactive",
"submit:ios": "./scripts/ci/submit-ios.sh",
"build:android": "JAVA_HOME=$(/usr/libexec/java_home -v 17) ANDROID_HOME=$HOME/Library/Android/sdk eas build --platform android --profile production --local --non-interactive",
"submit:android": "node ./scripts/ci/submit-android.js",
"lint": "expo lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@atproto/api": "^0.19.3",
"@atproto/jwk": "^0.6.0",
"@atproto/jwk-jose": "^0.1.11",
"@atproto/oauth-client": "^0.6.0",
"@expo/vector-icons": "^15.0.3",
"@formatjs/intl-segmenter": "^12.0.6",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/datetimepicker": "8.6.0",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"babel-preset-expo": "~55.0.8",
"expo": "^55.0.5",
"expo-auth-session": "~55.0.7",
"expo-build-properties": "~55.0.9",
"expo-clipboard": "~55.0.8",
"expo-constants": "~55.0.7",
"expo-crypto": "~55.0.9",
"expo-dev-client": "~55.0.18",
"expo-device": "~55.0.9",
"expo-document-picker": "~55.0.8",
"expo-font": "~55.0.4",
"expo-haptics": "~55.0.8",
"expo-image": "~55.0.6",
"expo-keep-awake": "~55.0.4",
"expo-linking": "~55.0.7",
"expo-localization": "~55.0.8",
"expo-notifications": "~55.0.11",
"expo-router": "~55.0.4",
"expo-sharing": "~55.0.11",
"expo-splash-screen": "~55.0.10",
"expo-sqlite": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-symbols": "~55.0.5",
"expo-system-ui": "~55.0.9",
"expo-video": "~55.0.10",
"expo-web-browser": "~55.0.9",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-markdown-display": "^7.0.2",
"react-native-quick-crypto": "1.0.10",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.7.2",
"react-native-zip-archive": "^7.0.2",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/plugin-transform-async-generator-functions": "^7.28.0",
"@babel/preset-env": "^7.28.5",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.10",
"babel-jest": "^30.2.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~55.0.0",
"googleapis": "^171.4.0",
"jest": "^29.7.0",
"react-native-svg-transformer": "^1.5.2",
"react-test-renderer": "19.2.0",
"tsconfig": "^7.0.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.51.0"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-zip-archive"
]
}
}
},
"private": true
}