-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bitcapital-hopper",
"version": "1.2.0",
"private": true,
"scripts": {
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"lint": "eslint .",
"postinstall": "jetify",
"clean": "yarn run -s clean:android",
"clean:android": "(cd android/ && ./gradlew clean)",
"release": "yarn run -s release:android",
"release:android": "(cd android/ && ./gradlew assembleRelease)",
"bundle": "yarn run -s bundle:android",
"bundle:android": "(cd android/ && ./gradlew bundleRelease)"
},
"react-native": {
"os": "react-native-os"
},
"rnpm": {
"assets": [
"assets/fonts"
]
},
"dependencies": {
"@bitcapital/base-sdk": "^1.9.0-alpha.43",
"@bitcapital/core-sdk": "^1.9.0-alpha.43",
"@react-native-community/async-storage": "^1.2.2",
"@types/lodash": "^4.14.123",
"@types/react-native-vector-icons": "^4.6.4",
"@types/urijs": "^1.15.38",
"axios": "^0.18.0",
"buffer": "^5.2.1",
"cep-promise": "^3.0.7",
"is-uuid": "^1.0.2",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"qs": "^6.7.0",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-animatable": "^1.3.2",
"react-native-biometrics": "^1.6.0",
"react-native-camera": "^3.0.0",
"react-native-easy-toast": "^1.2.0",
"react-native-firebase": "^5.5.6",
"react-native-fs": "^2.14.1",
"react-native-gesture-handler": "^1.3.0",
"react-native-haptic-feedback": "^1.8.2",
"react-native-i18n": "^2.0.15",
"react-native-image-picker": "^1.0.2",
"react-native-loading-spinner-overlay": "^1.0.1",
"react-native-masked-text": "^1.11.1",
"react-native-material-ripple": "^0.8.0",
"react-native-permissions": "^1.1.1",
"react-native-picker-select": "^6.3.0",
"react-native-qrcode-scanner": "^1.1.2",
"react-native-qrcode-svg": "^5.1.2",
"react-native-svg": "^9.3.6",
"react-native-typography": "^1.4.0",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^3.5.1",
"styled-components": "^4.2.0",
"tslib": "^1.9.3",
"unidecode": "^0.1.8",
"urijs": "^1.19.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.7",
"@types/react": "^16.8.8",
"@types/react-native": "^0.57.41",
"@types/react-native-i18n": "^2.0.0",
"@types/react-test-renderer": "^16.8.1",
"@types/styled-components": "^4.1.12",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"jetifier": "^1.6.3",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-svg-transformer": "^0.12.1",
"react-native-typescript-transformer": "^1.2.12",
"react-test-renderer": "16.8.6",
"typescript": "^3.3.4000"
},
"jest": {
"preset": "react-native"
}
}