-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 4.02 KB
/
package.json
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
111
112
113
114
115
116
117
{
"name": "baywallet",
"version": "0.0.4",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "watchman watch-del './' ; watchman watch-project './' && react-native start --reset-cache",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"rn-setup": "node rn-setup.js",
"clean": "rm -rf node_modules ios/Pods ios/build ios/Podfile.lock android/.gradle android/build && yarn install && cd ios && pod install && cd .. && echo Cleaned Bay Wallet Project Folder",
"clean:android": "rm -rf node_modules yarn.lock android/.gradle android/build && yarn install && echo Cleaned Bay Wallet Project Folder"
},
"dependencies": {
"@mempool/mempool.js": "^2.3.0",
"@nostr-dev-kit/ndk": "^0.8.5",
"@nostr-dev-kit/ndk-react": "^0.1.1",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-clipboard/clipboard": "1.11.2",
"@react-navigation/bottom-tabs": "^6.5.3",
"@react-navigation/native": "^6.1.2",
"@react-navigation/native-stack": "^6.9.8",
"@synonymdev/react-native-ldk": "^0.0.103",
"assert": "^1.5.0",
"axios": "^1.3.4",
"bip32": "2.0.6",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"crypto": "^1.0.1",
"events": "^3.3.0",
"lodash": "^4.17.21",
"mobx": "^6.7.0",
"mobx-react": "^7.6.0",
"nostr-tools": "^1.14.2",
"process": "^0.11.10",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-auto-height-image": "^3.2.4",
"react-native-crypto": "^2.2.0",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.12.0",
"react-native-image-picker": "^5.6.0",
"react-native-keychain": "^8.1.1",
"react-native-logs": "^5.0.1",
"react-native-qrcode-svg": "^6.2.0",
"react-native-randombytes": "^3.6.1",
"react-native-reanimated": "^3.3.0",
"react-native-safe-area-context": "4.5.3",
"react-native-screens": "^3.19.0",
"react-native-svg": "^13.7.0",
"react-native-toast-message": "^2.1.5",
"react-native-ui-lib": "^7.5.1",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"readable-stream": "^1.0.33",
"stream": "^0.0.2",
"stream-browserify": "^1.0.0",
"text-decoding": "^1.0.0",
"text-encoding": "^0.7.0",
"vm-browserify": "^1.1.2",
"websocket-polyfill": "^0.0.3",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"react-test-renderer": "18.1.0",
"rn-nodeify": "^10.3.0",
"typescript": "^4.8.3"
},
"jest": {
"preset": "react-native",
"testEnvironment": "./test-environment.js",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"react-native": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
}
}