-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.37 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
{
"name": "protestchat",
"main": "expo-router/entry",
"version": "1.0.0",
"dependencies": {
"@expo/ui": "~57.0.7",
"@noble/ciphers": "^2.2.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"expo": "~57.0.7",
"expo-build-properties": "~57.0.6",
"expo-camera": "~57.0.3",
"expo-clipboard": "~57.0.1",
"expo-constants": "~57.0.6",
"expo-crypto": "~57.0.1",
"expo-dev-client": "~57.0.7",
"expo-device": "~57.0.1",
"expo-font": "~57.0.1",
"expo-glass-effect": "~57.0.1",
"expo-image": "~57.0.1",
"expo-linking": "~57.0.3",
"expo-localization": "~57.0.1",
"expo-router": "~57.0.7",
"expo-secure-store": "~57.0.1",
"expo-splash-screen": "~57.0.4",
"expo-sqlite": "~57.0.1",
"expo-status-bar": "~57.0.1",
"expo-symbols": "~57.0.1",
"expo-system-ui": "~57.0.1",
"expo-web-browser": "~57.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-get-random-values": "~1.11.0",
"react-native-keyboard-controller": "1.21.9",
"react-native-qrcode-svg": "^6.3.21",
"react-native-reanimated": "4.5.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-svg": "15.15.4",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.10.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "~19.2.2",
"eslint": "^9.0.0",
"eslint-config-expo": "~57.0.0",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "ANDROID_HOME=${ANDROID_HOME:-$HOME/Library/Android/sdk} JAVA_HOME=${JAVA_HOME:-/Applications/Android Studio.app/Contents/jbr/Contents/Home} expo run:android --device",
"ios": "expo run:ios --device",
"web": "expo start --web",
"lint": "expo lint",
"i18n:check": "node scripts/check-i18n.mjs",
"test": "node --experimental-strip-types --import ./scripts/ts-resolver.mjs --test 'src/lib/__tests__/*.test.ts' 'src/trust/__tests__/*.test.ts'",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"doctor": "bash scripts/doctor.sh"
},
"private": true,
"license": "MIT",
"description": "Off-grid encrypted messaging over Bluetooth mesh, for internet shutdowns and jammed protests."
}