-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "@berachain/walletconnect-expo",
"version": "1.0.0",
"author": {
"name": "codingwithmanny",
"url": "https://github.com/codingwithmanny"
},
"main": "index.ts",
"scripts": {
"build": "echo 'Build skipped for this package'",
"dev": "expo start",
"lint": "eslint app/ components/ providers/ --ext .ts,.tsx --no-ignore",
"lint:fix": "eslint app/ components/ providers/ --ext .ts,.tsx --fix --no-ignore",
"format": "prettier --write \"app/**/*.{ts,tsx}\" \"components/**/*.{ts,tsx}\" \"providers/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^3.0.0",
"@react-native-community/netinfo": "^12.0.0",
"@walletconnect/react-native-compat": "^2.11.1",
"@web3modal/wagmi-react-native": "^2.0.0",
"autoprefixer": "^10.4.17",
"expo": "~57.0.0",
"expo-application": "^57.0.0",
"expo-linking": "^57.0.0",
"nativewind": "^4.0.36",
"postcss": "^8.4.35",
"react": "19.2.7",
"react-native": "0.86.0",
"react-native-css-interop": "^0.2.0",
"react-native-get-random-values": "^2.0.0",
"react-native-modal": "^13.0.1",
"react-native-reanimated": "^4.0.0",
"react-native-svg": "^15.0.0",
"tailwindcss": "^4.0.0",
"viem": "2.52.2",
"wagmi": "3.6.18"
},
"devDependencies": {
"eslint": "^9.0.0",
"typescript": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"jest": "^30.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.26.10",
"@types/react": "~19.2.0"
},
"private": true
}