-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.46 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
{
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"postinstall": "node_modules/.bin/rn-nodeify --install crypto,assert,url,stream,events --hack"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^12.0.5",
"@react-native-async-storage/async-storage": "^1.15.2",
"@react-native-clipboard/clipboard": "^1.9.0",
"@react-native-community/datetimepicker": "3.0.4",
"@react-native-community/masked-view": "0.1.10",
"@react-native-picker/picker": "1.9.2",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/material-top-tabs": "^5.3.14",
"@react-navigation/native": "~5.8.10",
"@react-navigation/stack": "~5.12.8",
"assert": "^1.5.0",
"axios": "^0.21.1",
"bitcore-lib-cash": "^8.25.10",
"dayjs": "^1.10.6",
"events": "^1.1.1",
"expo": "~40.0.0",
"expo-asset": "~8.2.1",
"expo-constants": "~9.3.0",
"expo-font": "~8.4.0",
"expo-linking": "~2.0.0",
"expo-splash-screen": "~0.8.0",
"expo-status-bar": "~1.0.3",
"expo-updates": "~0.4.0",
"expo-web-browser": "~8.6.0",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "~0.63.4",
"react-native-actions-sheet": "^0.4.9",
"react-native-camera": "^4.2.1",
"react-native-crypto": "^2.2.0",
"react-native-dotenv": "^2.5.5",
"react-native-elements": "^3.4.1",
"react-native-gesture-handler": "~1.8.0",
"react-native-permissions": "^3.1.0",
"react-native-qrcode-scanner": "^1.5.4",
"react-native-qrcode-svg": "^6.1.1",
"react-native-randombytes": "^3.6.1",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "~2.15.0",
"react-native-slide-to-unlock": "^0.1.6",
"react-native-svg": "^12.1.1",
"react-native-unimodules": "~0.12.0",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.13.12",
"react-redux": "^7.2.3",
"readable-stream": "^1.0.33",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"rn-nodeify": "^10.3.0",
"stream-browserify": "^1.0.0",
"url": "^0.10.3"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/bech32": "^1.1.4",
"@types/bitcore-lib-cash": "^8.23.5",
"@types/node": "^16.11.6",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/sha.js": "^2.4.0",
"babel-jest": "~25.2.6",
"jest": "~25.2.6",
"jest-expo": "~40.0.0",
"react-test-renderer": "~16.13.1",
"typescript": "~4.0.0"
},
"name": "lighthouse",
"version": "1.0.0",
"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"
},
"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"
}
}