-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 3.9 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
118
119
{
"name": "zilpay-mobile",
"version": "0.2.9",
"private": false,
"license": "ConsenSys",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"type-check": "tsc",
"precommit": "npm run lint:ts && npm run type-check",
"lint:ts": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"lint:ts:fix": "npm run lint:ts -- --fix"
},
"dependencies": {
"@ledgerhq/react-native-hw-transport-ble": "^6.20.0",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/push-notification-ios": "^1.8.0",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"@unimodules/core": "^7.1.0",
"@zilliqa-js/proto": "^3.0.0",
"big.js": "^6.1.1",
"bn.js": "^5.2.0",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"events": "^3.3.0",
"expo-asset": "^8.2.2",
"hash.js": "^1.1.7",
"hmac-drbg": "^1.0.1",
"long": "4.0.0",
"lottie-react-native": "^4.1.3",
"numbro": "^2.3.6",
"process": "^0.11.10",
"react": "17.0.2",
"react-native": "^0.64.1",
"react-native-aes-crypto": "^1.3.10",
"react-native-android-location-services-dialog-box": "^2.8.2",
"react-native-appearance": "^0.3.4",
"react-native-background-timer": "^2.4.1",
"react-native-ble-plx": "^2.0.3",
"react-native-camera": "^4.2.1",
"react-native-context-menu-view": "^1.2.1",
"react-native-device-info": "^8.4.8",
"react-native-fast-image": "^8.5.11",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.10.3",
"react-native-i18n": "^2.0.15",
"react-native-immersive-bars": "^1.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-keychain": "^8.0.0",
"react-native-modal": "^13.0.0",
"react-native-pager-view": "^5.4.9",
"react-native-permissions": "^3.2.0",
"react-native-push-notification": "^8.1.1",
"react-native-qrcode-scanner": "^1.5.4",
"react-native-qrcode-svg": "^6.1.1",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.18.1",
"react-native-share": "^7.3.3",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-native-swipeable": "^0.6.0",
"react-native-tab-view": "^3.0.1",
"react-native-webview": "^11.17.0",
"react-navigation": "^4.4.4",
"react-ridge-state": "^4.2.2",
"url-parse": "^1.5.1",
"websocket": "^1.0.34"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.9",
"@types/big.js": "^6.0.2",
"@types/bn.js": "^5.1.0",
"@types/elliptic": "^6.4.12",
"@types/react-native": " ^0.66.0",
"@types/react-native-background-timer": "^2.0.0",
"@types/react-native-i18n": "^2.0.0",
"@types/react-native-push-notification": "^7.0.1",
"@types/react-native-share": "^3.3.1",
"@types/react-native-snap-carousel": "^3.8.3",
"@types/react-test-renderer": "^17.0.1",
"@types/url-parse": "^1.4.3",
"@types/websocket": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-module-resolver": "^4.1.0",
"husky": "^4.3.0",
"metro-react-native-babel-preset": "^0.65.2",
"react-test-renderer": "17.0.1",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}