-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.8 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
{
"name": "PhoreiOS",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"postinstall": "./node_modules/.bin/rn-nodeify --install buffer,stream,assert,events,crypto,vm --hack && npm i -S buffer@5",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "node node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"assert": "^1.4.1",
"bitcoinjs-lib": "git+https://github.com/coreyphillips/react-native-bitcoinjs-lib.git",
"bitcoinjs-phore": "^1.1.0",
"buffer": "^5.1.0",
"buffer-reverse": "^1.0.1",
"color": "1.0.3",
"crypto": "^1.0.1",
"events": "^1.1.1",
"hdkey": "^1.0.0",
"lodash": "4.13.1",
"moment": "2.13.0",
"native-base": "2.5.2",
"phore-rpc": "^1.0.0",
"phorerate": "^1.0.1",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-bip39": "^2.3.0",
"react-native-camera": "^1.1.4",
"react-native-easy-gridview": "^1.0.2",
"react-native-icloudstore": "^0.9.0",
"react-native-qrcode": "^0.2.6",
"react-native-qrcode-scanner": "^1.0.1",
"react-native-randombytes": "^3.3.0",
"react-native-sqlite-storage": "^3.3.6",
"react-native-uuid": "^1.4.9",
"react-native-vector-icons": "4.5.0",
"react-navigation": "1.5.0",
"readable-stream": "^1.0.33",
"realm": "^2.10.0",
"request": "^2.87.0",
"rnpm": "^1.9.0",
"stream-browserify": "^1.0.0",
"vm-browserify": "0.0.4",
"xcode": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"eslint": "4.4.1",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-react-native": "3.0.1",
"flow-bin": "0.52.0",
"flow-typed": "2.1.5",
"husky": "0.14.3",
"jest": "20.0.4",
"jest-expo": "25.0.0",
"prettier": "1.5.3",
"react-test-renderer": "16.3.1",
"rn-nodeify": "^10.0.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"
}
}