forked from germanf/wallet-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 KB
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
{
"name": "wallet",
"version": "0.0.0",
"description": "Base wallet demonstrating the Rehive Platform features.",
"author": "mdeacon",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "eslint .",
"prettier": "eslint . --fix",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage"
},
"main": "main.js",
"dependencies": {
"big.js": "^5.0.3",
"expo": "24.0.0",
"google-libphonenumber": "^3.1.0",
"moment": "^2.20.0",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native":
"https://github.com/expo/react-native/archive/sdk-24.0.0.tar.gz",
"react-native-country-picker-modal": "^0.5.1",
"react-native-device-info": "^0.10.2",
"react-native-elements": "^0.18.5",
"react-native-i18n": "^2.0.9",
"react-native-infinite-scroll-view": "^0.4.2",
"react-native-loading-spinner-overlay": "^0.5.0",
"react-native-modal": "^4.1.1",
"react-native-picker-dropdown": "0.0.1",
"react-native-popup-dialog": "^0.10.44",
"react-native-swiper": "^1.5.13",
"react-native-vector-icons": "^4.3.0",
"react-navigation": "1.5.0"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-eslint": "^7.2.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "2.1.0",
"eslint": "^3.10.2",
"eslint-config-exponent": "^5.1.3",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.69.0",
"jest": "20.0.4",
"react-test-renderer": "16.0.0-alpha.12",
"prettier": "1.11.1"
},
"eslintConfig": {
"extends": "exponent/react",
"rules": {
"semi": "off",
"react/jsx-no-bind": [
0,
{
"allowArrowFunctions": 1,
"allowBind": 2
}
]
}
}
}