-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.29 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.29 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
{
"version": "1.0.8",
"main": "index.js",
"private": true,
"name": "@apps/native",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"dev:android": "expo start --android",
"eas:build": "eas build --platform all",
"eas:build:local": "eas build --local --platform all",
"eas:update": "eas update --branch preview",
"playwright:test": "playwright test tests/basic-tests.spec.ts && playwright test tests/wallet.spec.ts && playwright test tests/onramp.spec.ts",
"playwright:install": "playwright install chromium",
"deploy": "gh-pages --nojekyll -d dist",
"build:web": "expo export -p web"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "1.2.0",
"@expo/metro-runtime": "~4.0.1",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@reown/appkit-bitcoin-react-native": "workspace:*",
"@reown/appkit-ethers-react-native": "workspace:*",
"@reown/appkit-react-native": "workspace:*",
"@reown/appkit-solana-react-native": "workspace:*",
"@reown/appkit-wagmi-react-native": "workspace:*",
"@solana/web3.js": "^1.98.2",
"@tanstack/query-async-storage-persister": "5.40.0",
"@tanstack/react-query": "5.56.2",
"@tanstack/react-query-persist-client": "5.56.2",
"@walletconnect/react-native-compat": "2.21.5",
"bitcoinjs-lib": "7.0.0-rc.0",
"ethers": "6.13.5",
"expo": "^52.0.38",
"expo-application": "~6.0.2",
"expo-clipboard": "~7.0.1",
"expo-status-bar": "~2.0.1",
"expo-updates": "~0.27.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-get-random-values": "~1.11.0",
"react-native-safe-area-context": "5.6.1",
"react-native-svg": "15.12.0",
"react-native-toast-message": "2.2.1",
"react-native-web": "~0.19.13",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@playwright/test": "1.55.1",
"@types/gh-pages": "6",
"@types/node": "22.10.1",
"@types/react": "~18.2.79",
"babel-plugin-module-resolver": "5.0.0",
"gh-pages": "6.2.0",
"typescript": "5.2.2"
},
"resolutions": {
"@walletconnect/universal-provider": "2.21.9"
}
}