-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
78 lines (78 loc) · 2.48 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
{
"name": "WeiPay",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios:beta": "fastlane ios beta",
"android:beta": "fastlane android beta",
"test": "jest"
},
"dependencies": {
"axios": "^0.18.0",
"crypto-js": "^3.1.9-1",
"erc20_tokens": "^1.0.10",
"ethers": "^3.0.17",
"merge": ">=1.2.1",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "16.0.0-beta.5",
"react-native": "0.55.4",
"react-native-camera": "^1.2.0",
"react-native-config": "^0.11.5",
"react-native-elements": "^0.19.1",
"react-native-keyboard-avoid": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.6.0",
"react-native-keyboard-aware-view": "0.0.14",
"react-native-linear-gradient": "^2.4.0",
"react-native-material-design-searchbar": "git+https://github.com/peacechen/react-native-material-design-searchbar.git",
"react-native-modal": "^6.5.0",
"react-native-modal-dropdown": "^0.6.2",
"react-native-permissions": "^1.1.1",
"react-native-picker-select": "^4.2.0",
"react-native-qrcode": "^0.2.6",
"react-native-radio-buttons-group": "^1.0.7",
"react-native-responsive-fontsize": "^0.1.2",
"react-native-scrollable-tab-view": "^0.8.0",
"react-native-searchbar": "^1.15.0",
"react-native-shadow": "^1.2.2",
"react-native-simple-toast": "0.0.8",
"react-native-status-bar-height": "^2.1.0",
"react-native-svg": "^6.4.1",
"react-native-swipe-gestures": "^1.0.2",
"react-native-tab-view": "^1.0.2",
"react-native-underline-tabbar": "^1.3.6",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "1.0.0-beta.15",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-persist": "^5.10.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.2.0",
"render-if": "^0.1.1",
"shuffle-array": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "21.2.1",
"react-test-renderer": "16.0.0-beta.5",
"redux-logger": "^3.0.6",
"remote-redux-devtools": "^0.5.13",
"remotedev-rn-debugger": "^0.8.3"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
}
}