forked from algorandfoundation/Rocca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.94 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.94 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
{
"name": "rocca",
"version": "1.0.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android --port 8082",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint",
"lint:fix": "expo lint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"build:dev:android": "eas build --platform android --profile development",
"build:dev:ios": "eas build --platform ios --profile development",
"build:test:android": "eas build --platform android --profile testing",
"build:test:ios": "eas build --platform ios --profile testing",
"build:prod:android": "eas build --platform android --profile production",
"build:prod:ios": "eas build --platform ios --profile production",
"build:all:android": "eas build --platform android --profile production --non-interactive",
"build:all:ios": "eas build --platform ios --profile production --non-interactive",
"prebuild": "expo prebuild",
"postinstall": "patch-package",
"export": "expo export"
},
"dependencies": {
"@algorandfoundation/accounts-keystore-extension": "^1.0.0-canary.4",
"@algorandfoundation/accounts-store": "^1.0.0-canary.2",
"@algorandfoundation/keystore": "^1.0.0-canary.15",
"@algorandfoundation/liquid-client": "1.0.0-canary.3",
"@algorandfoundation/log-store": "^1.0.0-canary.3",
"@algorandfoundation/react-native-keystore": "^1.0.0-canary.11",
"@algorandfoundation/react-native-passkey-autofill": "^1.0.0-canary.15",
"@config-plugins/react-native-webrtc": "^13.0.0",
"@expo/vector-icons": "^15.0.3",
"@noble/hashes": "^1.8.0",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"@scure/base": "^2.0.0",
"@scure/bip39": "^2.0.1",
"@tanstack/react-store": "0.9.1",
"before-after-hook": "^4.0.0",
"buffer": "^6.0.3",
"expo": "^54.0.33",
"expo-camera": "~17.0.10",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.20",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.21",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-linking": "~8.0.11",
"expo-router": "~6.0.23",
"expo-screen-capture": "~8.0.9",
"expo-sharing": "~14.0.8",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-updates": "~29.0.16",
"expo-web-browser": "~15.0.10",
"react": "19.1.0",
"react-base16-styling": "^0.10.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-json-tree": "^1.5.0",
"react-native-keychain": "^10.0.0",
"react-native-mmkv": "^4.3.1",
"react-native-nitro-modules": "^0.35.0",
"react-native-passkey": "^3.3.2",
"react-native-quick-base64": "^2.2.2",
"react-native-quick-crypto": "^1.0.15",
"react-native-reanimated": "~3.19.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-webrtc": "^124.0.7"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.1.0",
"eas-cli": "^18.1.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"expo-build-properties": "^55.0.9",
"jest": "^29.7.0",
"jest-expo": "^55.0.9",
"lefthook": "^2.1.2",
"oxfmt": "^0.44.0",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"react-test-renderer": "19.1.0",
"typescript": "~5.8.3"
},
"overrides": {
"@algorandfoundation/keystore": "^1.0.0-canary.15",
"lightningcss": "1.30.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-test-renderer": "19.1.0"
}
}