forked from WalletConnect/walletconnect-demo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
175 lines (175 loc) · 5.33 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "walletconnect-demo-app",
"version": "1.0.0-beta.32",
"private": true,
"keywords": [
"walletconnect",
"ethereum",
"web3",
"crypto"
],
"author": "WalletConnect <walletconnect.org>",
"homepage": "https://walletconnect.org",
"license": "LGPL-3.0",
"scripts": {
"clean:cache": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force && npm cache verify",
"start": "npm run clean:cache && react-native start --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"postinstall": "./node_modules/.bin/rn-nodeify --hack --install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-demo-app.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-demo-app/issues"
},
"dependencies": {
"@tradle/react-native-http": "^2.0.1",
"@walletconnect/react-native": "^1.0.0-beta.32",
"assert": "^1.4.1",
"bignumber.js": "^8.0.1",
"browserify-zlib": "^0.1.4",
"buffer": "^4.9.1",
"console-browserify": "^1.1.0",
"constants-browserify": "^1.0.0",
"dns.js": "^1.0.1",
"domain-browser": "^1.2.0",
"ethers": "^4.0.20",
"events": "^1.1.1",
"https-browserify": "0.0.1",
"path-browserify": "0.0.0",
"process": "^0.11.10",
"prop-types": "^15.6.2",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"react": "16.3.1",
"react-native": "~0.55.2",
"react-native-blockies": "^1.0.2",
"react-native-camera": "^1.6.4",
"react-native-crypto": "^2.1.2",
"react-native-gesture-handler": "^1.0.12",
"react-native-image-placeholder": "^1.0.14",
"react-native-keychain": "^3.0.0",
"react-native-level-fs": "^3.0.1",
"react-native-os": "^1.2.2",
"react-native-qrcode-scanner": "^1.1.0",
"react-native-randombytes": "^3.5.2",
"react-native-settings-list": "^1.8.0",
"react-native-tcp": "^3.3.0",
"react-native-udp": "^2.3.1",
"react-navigation": "^3.0.9",
"react-redux": "^6.0.0",
"readable-stream": "^1.0.33",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"remote-redux-devtools": "^0.5.16",
"stream-browserify": "^1.0.0",
"string_decoder": "^0.10.31",
"styled-components": "^4.1.3",
"timers-browserify": "^1.4.2",
"tty-browserify": "0.0.0",
"url": "^0.10.3",
"util": "^0.10.4",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/jest": "^22.2.3",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.3.14",
"@types/react-native": "^0.55.14",
"@types/react-native-settings-list": "^1.8.1",
"@types/react-navigation": "^3.0.1",
"@types/react-redux": "^6.0.11",
"@types/react-test-renderer": "^16.0.1",
"@types/remote-redux-devtools": "^0.5.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "^23.6.0",
"jest-react-native": "^18.0.0",
"react-native-scripts-ts": "1.15.0",
"react-native-typescript-transformer": "^1.2.3",
"react-test-renderer": "16.3.1",
"rn-nodeify": "github:tradle/rn-nodeify",
"ts-jest": "^22.4.6",
"tslib": "^1.9.1",
"typescript": "^2.8.3"
},
"jest": {
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "react-native",
"testMatch": [
"**/__tests__/**/*.[tj]s?(x)",
"**/?(*.)(spec|test).[tj]s?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"react-native": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_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",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
},
"browser": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_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",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
}
}