-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.95 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
{
"name": "hail",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "22.0.4",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^4.0.0",
"flow-bin": "^0.56.0",
"jest": "22.0.4",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "16.0.0",
"redux-devtools": "^3.4.1"
},
"main": "./App.js",
"scripts": {
"flow": "node_modules/flow-bin/flow-osx-v0.56.0/flow status",
"test": "node node_modules/jest/bin/jest.js --watch",
"start": "node node_modules/react-native/local-cli/cli.js start",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"eject": "rm -rf ios/ && rm -rf android && react-native eject",
"fresh-start": "rm -rf ./node_modules && npm install && npm run eject"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"Base64": "^1.0.1",
"babel-plugin-rewrite-require": "^1.14.5",
"babel-preset-es2015": "^6.24.1",
"bcoin": "^1.0.0-beta.15",
"bignumber.js": "^6.0.0",
"bip39": "^2.5.0",
"bitcoinjs-lib": "^3.3.2",
"bs58check": "^2.1.1",
"buffer": "^5.1.0",
"create-hash": "^1.2.0",
"currency-formatter": "^1.4.2",
"electrum-client": "git+https://github.com/BitCraftIO/node-electrum-client.git",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.4",
"ethereumjs-wallet": "^0.6.0",
"hdkey": "^1.0.0",
"moment": "^2.22.2",
"node-libs-browser": "^2.1.0",
"numeral": "^2.0.6",
"proxy-polyfill": "^0.3.0",
"react": "^16.2.0",
"react-native": "^0.52.0",
"react-native-chooser": "^1.7.0",
"react-native-dropdownalert": "^3.1.2",
"react-native-elements": "^0.18.5",
"react-native-material-dropdown": "^0.11.1",
"react-native-modalbox": "^1.4.2",
"react-native-platform-touchable": "^1.1.1",
"react-native-randombytes": "^3.0.0",
"react-native-svg": "^5.5.1",
"react-native-svg-charts": "^2.0.1",
"react-native-tcp": "^3.3.0",
"react-native-vector-icons": "^4.4.3",
"react-navigation": "^1.0.0-beta.22",
"react-redux": "^5.0.6",
"realm": "^2.2.18",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"rn-viewpager": "^1.2.9",
"rxjs": "^6.1.0",
"rxjs-compat": "^6.1.0",
"safe-buffer": "^5.1.1",
"vm": "^0.1.0",
"web3": "^1.0.0-beta.30"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"proseWrap": "never",
"printWidth": 200
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}