-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
92 lines (92 loc) · 2.75 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
{
"name": "rncryptowallet",
"version": "1.0.0",
"description": "Simple mobile Bitcoin & Ethereum wallet",
"author": "Martin Litvaj <[email protected]> (http://litvaj.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kamahl19/react-native-wallet.git"
},
"bugs": {
"url": "https://github.com/Kamahl19/react-native-wallet/issues"
},
"engines": {
"node": ">=10.15.1",
"yarn": "1.x"
},
"scripts": {
"cleanup": "watchman watch-del-all && rm -rf node_modules && yarn cache clean && yarn install && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf ~/.rncache",
"format": "prettier --write '**/*.{js,json,md}'",
"ios": "react-native run-ios",
"lint": "node ./node_modules/eslint/bin/eslint.js '**/*.js'",
"postinstall": "sed -i -e \"s/var Script = function Script(from) {/var Script = function Script(from) { Address = require('..\\/address');/g\" ./node_modules/bitcore-lib/lib/script/script.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn lint --fix"
],
"*.{js,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"babel-eslint": "9.x",
"babel-jest": "^22.1.0",
"babel-preset-react-native": "^4.0.1",
"bip39": "^3.0.2",
"eslint": "5.x",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.5.0",
"husky": "^4.3.0",
"jest": "^22.1.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"redux-logger": "^3.0.6"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"bip21": "^2.0.3",
"bitcore-wallet-client": "^6.7.5",
"bs58check": "^2.1.2",
"cryptocompare": "^1.0.0",
"ethers": "^4.0.27",
"lodash.flattendeep": "^4.4.0",
"node-libs-browser": "^2.2.1",
"prop-types": "^15.7.2",
"rc-form": "^2.4.11",
"react": "^16.2.0",
"react-native": "0.53.3",
"react-native-camera": "^1.12.0",
"react-native-dropdownalert": "^3.9.2",
"react-native-qrcode-scanner": "^1.1.2",
"react-native-qrcode-svg": "^5.1.2",
"react-native-radio-buttons": "^1.0.0",
"react-native-randombytes": "^3.5.3",
"react-native-svg": "~6.5.2",
"react-navigation": "~2.18.3",
"react-redux": "^5.1.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"jest": {
"preset": "react-native"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}