-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
{
"name": "meshwallet",
"version": "1.0.0",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"start": "EXPO_NO_WATCHMAN=1 expo start",
"prebuild": "expo prebuild",
"devbuild:android": "eas build --platform android --profile development",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "EXPO_NO_WATCHMAN=1 expo start --web"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.4.2",
"@expo-google-fonts/space-grotesk": "^0.4.1",
"@expo/config-plugins": "^55.0.8",
"@expo/vector-icons": "^15.1.1",
"@noble/secp256k1": "^3.1.0",
"@offline-protocol/mesh-sdk": "^0.10.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.4.1",
"@walletconnect/core": "^2.23.9",
"@walletconnect/modal-react-native": "^1.1.0",
"@walletconnect/react-native-compat": "^2.23.9",
"ethers": "^6.16.0",
"expo": "^54.0.0",
"expo-background-fetch": "~14.0.9",
"expo-blur": "~15.0.8",
"expo-camera": "~17.0.10",
"expo-constants": "^18.0.13",
"expo-crypto": "~15.0.8",
"expo-dev-client": "~6.0.20",
"expo-font": "~14.0.11",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "^8.0.11",
"expo-router": "~6.0.23",
"expo-secure-store": "~15.0.8",
"expo-sensors": "~15.0.8",
"expo-splash-screen": "^31.0.13",
"expo-sqlite": "~16.0.10",
"expo-status-bar": "~3.0.8",
"expo-task-manager": "~14.0.9",
"nativewind": "latest",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "^2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-modal": "^13.0.1",
"react-native-qrcode-svg": "^6.3.21",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "^4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~19.1.10",
"eslint": "^9.25.1",
"eslint-config-expo": "~10.0.0",
"eslint-config-prettier": "^10.1.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.0",
"typescript": "~5.9.2",
"vitest": "^4.1.5"
},
"main": "expo-router/entry",
"private": true
}