forked from saikhurana98/MindBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.16 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
{
"name": "PayBTC",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "rn-nodeify --install buffer,stream,assert,events,crypto,vm,process --hack"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.2",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.10",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.4",
"assert": "^1.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"bitcoinjs-lib": "^5.2.0",
"buffer": "^6.0.3",
"events": "^1.0.0",
"faker": "^5.5.3",
"lottie-react-native": "^4.0.2",
"process": "^0.11.0",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-animated-loader": "^0.0.9",
"react-native-camera": "^3.43.8",
"react-native-crypto": "^2.1.0",
"react-native-dropdown-picker": "^5.0.0",
"react-native-elements": "^3.3.2",
"react-native-fingerprint-scanner": "^6.0.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-onboarding-swiper": "^1.1.4",
"react-native-pager-view": "^5.1.6",
"react-native-permissions": "^3.0.3",
"react-native-qrcode-generator": "^1.2.2",
"react-native-qrcode-scanner": "^1.5.4",
"react-native-randombytes": "^3.6.0",
"react-native-reanimated": "^2.1.0",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-native-vector-icons": "^8.1.0",
"react-native-webview": "^11.4.4",
"react-native-youtube": "^2.0.1",
"readable-stream": "^3.6.0",
"stream-browserify": "^1.0.0",
"vm-browserify": "^0.0.4"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.65.2",
"react-test-renderer": "17.0.1",
"rn-nodeify": "^10.2.0"
},
"jest": {
"preset": "react-native"
},
"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"
}
}