This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
128 lines (128 loc) · 3.57 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
{
"name": "eltwallet",
"version": "2.1.0",
"private": true,
"scripts": {
"lint": "eslint .",
"precommit": "lint-staged",
"postinstall": "./scripts/postinstall.sh",
"postversion": "react-native-version",
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"dependencies": {
"analytics-react-native": "1.2.0",
"assert": "1.4.1",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"bn.js": "4.11.8",
"ethereumjs-wallet": "0.6.2",
"events": "3.0.0",
"lodash": "4.17.10",
"moment": "2.22.2",
"prop-types": "15.6.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-camera": "1.1.4",
"react-native-config": "0.11.5",
"react-native-crypto": "2.1.2",
"react-native-dialogs": "0.0.21",
"react-native-fingerprint-scanner": "2.3.2",
"react-native-keyboard-aware-scrollview": "2.0.0",
"react-native-linear-gradient": "2.4.0",
"react-native-qrcode-svg": "5.1.0",
"react-native-randombytes": "3.5.0",
"react-native-sensitive-info": "5.2.4",
"react-native-svg": "6.5.2",
"react-native-swipeout": "2.3.6",
"react-native-userdefaults-ios": "0.1.3",
"react-native-uuid": "1.4.9",
"react-navigation": "2.11.2",
"react-redux": "5.0.7",
"readable-stream": "3.0.2",
"redux": "4.0.0",
"redux-logger": "3.0.6",
"redux-persist": "5.10.0",
"redux-persist-sensitive-storage": "1.0.0",
"stream-browserify": "2.0.1",
"vm-browserify": "1.1.0",
"web3": "0.19.1",
"web3-provider-engine": "14.0.6"
},
"devDependencies": {
"babel-eslint": "8.2.6",
"babel-preset-react-native": "5.0.2",
"eslint": "5.4.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"husky": "0.14.3",
"lint-staged": "7.2.2",
"prettier": "1.14.2",
"react-native-version": "2.6.3",
"rn-nodeify": "10.0.0"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"eslintIgnore": [
"shim.js"
],
"eslintConfig": {
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"parser": "babel-eslint",
"rules": {
"react/destructuring-assignment": "0",
"react/jsx-filename-extension": "0",
"react/prefer-stateless-function": "0",
"react/no-array-index-key": "0",
"no-restricted-properties": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".android.js",
".ios.js"
]
}
}
},
"globals": {
"fetch": true
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"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"
}
}