-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
111 lines (111 loc) · 3.58 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
{
"name": "mirror",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@apollo/client": "^3.4.1",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/clipboard": "^1.2.1",
"@react-native-community/cookies": "^5.0.1",
"@react-native-community/masked-view": "^0.1.8",
"@react-native-community/netinfo": "^6.0.0",
"@react-native-picker/picker": "^1.8.1",
"@react-navigation/bottom-tabs": "^5.2.6",
"@react-navigation/native": "^5.1.5",
"@react-navigation/stack": "^5.2.10",
"@terra-money/terra.js": "^2.1.3",
"@types/base-64": "^1.0.0",
"@types/crypto-js": "^4.0.2",
"@types/lodash": "^4.14.171",
"@types/ramda": "^0.27.44",
"@types/react-native-svg-charts": "^5.0.9",
"axios": "^0.21.1",
"base-64": "^1.0.0",
"bignumber.js": "^9.0.0",
"crypto-js": "^4.1.1",
"graphql": "^15.5.1",
"lodash": "^4.17.21",
"lottie-react-native": "^4.0.3",
"multicoin-address-validator": "^0.5.2",
"node-libs-react-native": "^1.2.1",
"pusher-js": "^7.0.3",
"ramda": "^0.27.1",
"react": "17.0.2",
"react-native": "0.64.1",
"react-native-app-settings": "^2.0.1",
"react-native-argon2": "^0.1.0",
"react-native-camera": "^3.44.3",
"react-native-device-info": "^8.1.5",
"react-native-exit-app": "^1.1.0",
"react-native-gesture-handler": "^1.8.0",
"react-native-get-random-values": "^1.7.0",
"react-native-haptic-feedback": "^1.11.0",
"react-native-inappbrowser-reborn": "^3.6.3",
"react-native-keychain": "git+https://[email protected]/Zo2m4bie/react-native-keychain.git#2c3aee65991044b9842b88085c5382102c3581f4",
"react-native-localization": "^2.1.6",
"react-native-modal": "^11.5.6",
"react-native-permissions": "^2.2.0",
"react-native-picker-module": "^2.0.2",
"react-native-qrcode-scanner": "^1.4.1",
"react-native-qrcode-svg": "^6.0.3",
"react-native-reanimated": "^1.8.0",
"react-native-restart": "^0.0.20",
"react-native-safe-area-context": "^3.1.7",
"react-native-screens": "^3.4.0",
"react-native-securerandom": "^1.0.0",
"react-native-splash-screen": "^3.2.0",
"react-native-status-bar-height": "^2.5.0",
"react-native-svg": "^12.1.0",
"react-native-svg-charts": "^5.4.0",
"react-native-swiper": "^1.6.0",
"react-native-touch-id": "^4.4.1",
"react-native-url-polyfill": "^1.2.0",
"react-native-webview": "^11.6.5",
"scrypt-js": "^3.0.1",
"socketcluster-client": "^16.0.4",
"tweetnacl": "^1.0.3",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/runtime": "^7.14.8",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.24",
"@types/react": "^16.14.11",
"@types/react-native": "^0.64.12",
"@types/react-test-renderer": "^17.0.1",
"@types/uuid": "^8.3.1",
"babel-jest": "^26.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "2.3.2",
"react-test-renderer": "17.0.1",
"typescript": "^4.3.5"
},
"jest": {
"preset": "react-native"
}
}