-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 4 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
{
"main": "./src/index.js",
"name": "humcash-app",
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"ios:build": "expo build:ios",
"android:build": "expo build:android",
"web:build": "expo build:web",
"start": "react-native start",
"test": "./node_modules/.bin/jest --passWithNoTests --forceExit --detectOpenHandles",
"test:watch": "./node_modules/.bin/jest --passWithNoTests --runInBand --detectOpenHandles --forceExit --watchAll",
"eslint": "npx eslint . --ext .ts,.tsx,.js",
"prettier:write": "prettier --write ./src/**",
"prettier": "prettier --dry-run ./src/**"
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@humanity.cash/types": "^0.0.2",
"@react-native-async-storage/async-storage": "1.15.0",
"@react-native-community/datetimepicker": "3.5.2",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/viewpager": "5.0.11",
"@react-navigation/bottom-tabs": "^5.7.0",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/material-top-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.0",
"@react-navigation/stack": "^5.7.0",
"@types/lodash": "^4.14.159",
"@types/react-native-read-more-text": "^1.0.1",
"@types/react-native-svg-charts": "^5.0.3",
"amazon-cognito-identity-js": "^5.0.6",
"axios": "^0.21.1",
"eslint-plugin-jest": "^24.3.6",
"expo-asset": "~8.3.3",
"expo-barcode-scanner": "~10.2.2",
"expo-brightness": "^9.2.2",
"expo-constants": "~11.0.1",
"expo-font": "~9.2.1",
"expo-image-manipulator": "^9.2.2",
"expo-image-picker": "~10.2.2",
"expo-intent-launcher": "~9.1.0",
"expo-local-authentication": "~11.1.1",
"expo-mail-composer": "10.2.2",
"expo-permissions": "~12.1.1",
"expo-splash-screen": "~0.11.2",
"expo-status-bar": "~1.0.4",
"expo-updates": "~0.8.2",
"faker": "^5.5.3",
"fuse.js": "^6.4.6",
"jest": "^27.0.3",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hookstore": "^1.4.4",
"react-native": "^0.63.4",
"react-native-camera": "^4.0.0",
"react-native-chart-kit": "^6.5.0",
"react-native-dotenv": "^3.2.0",
"react-native-dropdown-picker": "^5.1.27",
"react-native-elements": "^2.1.0",
"react-native-fit-image": "^1.5.5",
"react-native-gesture-handler": "~1.10.2",
"react-native-mask-input": "^1.1.1",
"react-native-modal-datetime-picker": "^13.0.0",
"react-native-paper": "^4.9.2",
"react-native-pdf": "^6.2.0",
"react-native-permissions": "^2.1.5",
"react-native-picker-select": "^7.0.0",
"react-native-qrcode-svg": "^6.1.1",
"react-native-read-more-text": "^1.1.2",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-select-dropdown": "^1.1.0",
"react-native-svg": "12.1.1",
"react-native-svg-charts": "^5.4.0",
"react-native-tab-view": "^2.15.1",
"react-native-toast-message": "^1.6.0",
"react-native-touch-id": "^4.4.1",
"react-native-unimodules": "~0.14.5",
"react-native-vector-icons": "^7.0.0",
"react-native-web": "~0.13.12",
"react-native-webview": "11.6.2"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-preset-expo": "8.3.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-spellcheck": "^0.0.19",
"expo": "^42.0.0",
"jest-expo": "^38.0.0",
"prettier": "2.5.1",
"typescript": "~4.0.0"
},
"jest": {
"preset": "react-native"
},
"private": true
}