-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.92 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.92 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": "purrowallet",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "biome lint .",
"fmt": "biome format . && yarn biome format --write",
"check": "bunx @biomejs/biome check --write ./src",
"check:fix": "bunx @biomejs/biome check --write --unsafe ./src",
"start": "react-native start --reset-cache",
"test": "jest",
"open:xcode": "xed -b ios",
"open:android": "open -a Android\\ Studio",
"reset": "rm -rf node_modules yarn.lock ios/Pods ios/build ios/Podfile.lock && yarn install && cd ios && pod install && cd ..",
"prepare": "husky"
},
"dependencies": {
"@ethereumjs/util": "^10.0.0",
"@ethersproject/hdnode": "^5.8.0",
"@ethersproject/shims": "^5.8.0",
"@ethersproject/wallet": "^5.8.0",
"@gorhom/bottom-sheet": "^5",
"@hookform/resolvers": "^5.2.2",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-clipboard/clipboard": "^1.16.3",
"@react-native-community/blur": "^4.4.1",
"@react-native/new-app-screen": "0.82.0",
"@react-navigation/bottom-tabs": "^7.5.0",
"@react-navigation/native": "^7.1.18",
"@react-navigation/native-stack": "^7.3.27",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@tanstack/react-query": "^5.90.5",
"@toruslabs/react-native-web-browser": "^1.1.0",
"@web3auth/base": "^9.7.0",
"@web3auth/base-provider": "^9.7.0",
"@web3auth/ethereum-provider": "^9.7.0",
"@web3auth/react-native-sdk": "^8.1.0",
"axios": "^1.13.2",
"buffer": "^6.0.3",
"empty-module": "^0.0.2",
"ethers": "^5.7.2",
"event": "^1.0.0",
"events": "^3.3.0",
"i18next": "^25.5.2",
"lucide-react-native": "^0.545.0",
"nativewind": "4.1.23",
"react": "19.1.1",
"react-hook-form": "^7.65.0",
"react-i18next": "^16.0.1",
"react-native": "0.82.0",
"react-native-aes-crypto": "^3.2.1",
"react-native-bootsplash": "^6.3.11",
"react-native-encrypted-storage": "^4.0.3",
"react-native-gesture-handler": "^2.28.0",
"react-native-get-random-values": "^1.11.0",
"react-native-keyboard-controller": "^1.18.5",
"react-native-keychain": "^8.2.0",
"react-native-mmkv": "^3.3.0",
"react-native-qrcode-svg": "^6.3.15",
"react-native-quick-crypto": "^0.7.17",
"react-native-reanimated": "^3.15.4",
"react-native-redash": "^18.1.4",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.16.0",
"react-native-screenshot-prevent": "^1.2.1",
"react-native-svg": "^15.14.0",
"react-native-toast-notifications": "^3.4.0",
"react-native-webview": "^13.16.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@biomejs/biome": "^2.2.6",
"@react-native-community/cli": "^20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.82.0",
"@react-native/eslint-config": "0.82.0",
"@react-native/metro-config": "0.82.0",
"@react-native/typescript-config": "0.82.0",
"@tanstack/react-query-devtools": "^5.90.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.20",
"@types/react": "^19.1.1",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.19.0",
"husky": "^9.1.7",
"jest": "^29.6.3",
"lint-staged": "^16.2.4",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"react-native-svg-transformer": "^1.5.1",
"react-test-renderer": "19.1.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}