-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.05 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
{
"name": "xmtp-react-native-sdk-example",
"version": "1.0.0",
"scripts": {
"e2e:ios:build": "expo prebuild --platform ios",
"e2e:android:build": "expo prebuild --platform android && cd android && ./gradlew -Dorg.gradle.jvmargs=-Xmx8g assembleRelease",
"e2e:android:install": "adb install android/app/build/outputs/apk/release/app-release.apk",
"e2e:android:all": "npm run e2e:android:build && npm run e2e:android:install && npm run test:e2e",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:clean": "expo run:ios --no-build-cache",
"web": "expo start --web",
"test": "npx expo-doctor --verbose",
"test:e2e": "maestro test --format junit --test-output-dir ./e2e/.maestro ./e2e/mainflow.yaml",
"upload:up": "docker-compose -p xmtp -f dev/local/docker-compose.yml up -d",
"upload:down": "docker-compose -p xmtp -f dev/local/docker-compose.yml down",
"postinstall": "patch-package"
},
"dependencies": {
"@ethersproject/shims": "^5.8.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@xmtp/proto": "3.54.0",
"buffer": "^6.0.3",
"ethers": "^5.8.0",
"expo": "~52.0.47",
"expo-clipboard": "~7.0.1",
"expo-crypto": "^14.0.2",
"expo-document-picker": "~13.0.3",
"expo-file-system": "~18.0.12",
"expo-image-picker": "~16.0.6",
"expo-secure-store": "~14.0.1",
"expo-splash-screen": "~0.29.24",
"expo-status-bar": "~2.0.1",
"expo-system-ui": "~4.0.9",
"moment": "^2.29.4",
"node-libs-browser": "^2.2.1",
"react": "18.3.1",
"react-native": "0.76.9",
"react-native-blob-util": "^0.19.0",
"react-native-config": "^1.5.1",
"react-native-crypto": "^2.2.0",
"react-native-fs": "^2.20.0",
"react-native-get-random-values": "^1.11.0",
"react-native-mmkv": "^2.8.0",
"react-native-quick-base64": "^2.0.8",
"react-native-quick-crypto": "^0.7.12",
"react-native-randombytes": "^3.6.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-sqlite-storage": "^6.0.1",
"react-native-svg": "15.8.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-webview": "13.12.5",
"react-query": "^3.39.3",
"stream-browserify": "^3.0.0",
"text-encoding": "^0.7.0",
"viem": "^2.7.22"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/node": "^20.17.6",
"@types/text-encoding": "^0.0.39",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"expo-doctor": "^1.17.10",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
},
"private": true,
"expo": {
"autolinking": {
"nativeModulesDir": ".."
}
},
"engines": {
"node": ">=20"
}
}