-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.4 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
120
121
122
123
124
{
"name": "rnWallet",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint app/",
"lint:fix": "eslint app/ --fix",
"postinstall": "./postinstall.sh",
"bundle-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.js --platform ios --dev false --bundle-output ./ios/bundle/index.ios.jsbundle --assets-dest ./ios/bundle",
"bundle-android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/"
},
"dependencies": {
"assert": "^1.4.1",
"asyncstorage-down": "^4.0.1",
"axios": "0.18.0",
"bignumber.js": "^7.2.1",
"bn.js": "^4.11.8",
"crypto-js": "3.1.9-1",
"elliptic": "6.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"etherscan-api": "^8.1.2",
"events": "^1.1.1",
"hdkey": "^1.0.0",
"isomorphic-ws": "4.0.1",
"jcore-react-native": "^1.2.10",
"jpush-react-native": "^2.2.11",
"keccak": "^1.4.0",
"keythereum": "^1.0.4",
"lodash": "^4.17.11",
"path-browserify": "0.0.0",
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-blur": "^3.2.2",
"react-native-camera": "git+https://[email protected]/react-native-community/react-native-camera.git",
"react-native-crypto": "^2.1.2",
"react-native-device-info": "^0.22.5",
"react-native-fast-crypto": "^1.8.0",
"react-native-firebase": "^5.2.1",
"react-native-fs": "git://github.com/itinance/react-native-fs.git",
"react-native-hdwallet": "^1.0.2",
"react-native-i18n": "^2.0.15",
"react-native-image-picker": "^0.27.1",
"react-native-json-tree": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.5.0",
"react-native-keyboard-aware-scrollview": "^2.0.0",
"react-native-level-fs": "^3.0.1",
"react-native-linear-gradient": "^2.4.0",
"react-native-md5": "^1.0.0",
"react-native-modal-dropdown": "^0.6.2",
"react-native-qrcode": "^0.2.7",
"react-native-randombytes": "^3.5.0",
"react-native-root-siblings": "^3.0.0",
"react-native-root-toast": "^3.0.2",
"react-native-smart-barcode": "^1.0.6",
"react-native-splash-screen": "^3.1.1",
"react-native-storage": "^0.2.2",
"react-native-touch-id": "^4.1.0",
"react-native-uuid": "^1.4.9",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.14.2",
"react-redux": "^5.0.7",
"readable-stream": "^1.0.33",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"secp256k1": "^3.5.0",
"stream-browserify": "^1.0.0",
"strip-hex-prefix": "^1.0.0",
"unorm": "^1.4.1",
"url": "^0.10.3",
"vm-browserify": "0.0.4",
"web3": "1.0.0-beta.34",
"ws": "6.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "23.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^5.0.2",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "23.4.1",
"prettier": "^1.15.3",
"react-test-renderer": "16.3.1",
"rn-nodeify": "^10.0.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
},
"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",
"path": "path-browserify",
"fs": "react-native-level-fs"
},
"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",
"path": "path-browserify",
"fs": "react-native-level-fs"
}
}