-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 3.43 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
{
"main": "node_modules/expo/AppEntry.js",
"engines": {
"node": "^16.13.2",
"yarn": "^1.22.10"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx --fix",
"test": "jest"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)"
]
},
"dependencies": {
"@expo/metro-config": "^0.1.70",
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "^1.17.3",
"@react-native-community/datetimepicker": "4.0.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-segmented-control/segmented-control": "2.4.0",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/material-top-tabs": "^5.3.15",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"@reduxjs/toolkit": "^1.5.0",
"buffer": "^6.0.3",
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
"expo": "^44.0.0",
"expo-auth-session": "~3.5.0",
"expo-linking": "~3.0.0",
"expo-random": "~12.1.1",
"expo-status-bar": "~1.2.0",
"expo-updates": "~0.11.5",
"fhir-kit-client": "^1.9.0",
"immer": "^9.0.1",
"native-base": "^2.15.2",
"prop-types": "^15.7.2",
"ramda": "^0.28.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-dialog": "^8.0.1",
"react-native-dropdown-picker": "^5.3.0",
"react-native-gesture-handler": "~2.1.0",
"react-native-get-random-values": "~1.7.0",
"react-native-paper": "^4.11.2",
"react-native-reanimated": "~2.3.1",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-svg": "12.1.1",
"react-native-tab-view": "^2.16.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "0.17.1",
"react-native-web-swiper": "^2.2.1",
"react-native-webview": "11.15.0",
"react-native-youtube-iframe": "^2.1.0",
"react-redux": "^7.2.2",
"recoil": "^0.3.0",
"redux-observable": "^1.2.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rxjs": "^6.6.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/expo": "^33.0.1",
"@types/fhir": "^0.0.34",
"@types/ramda": "^0.28.0",
"@types/react": "~17.0.21",
"@types/react-native": "^0.67.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"jest-expo": "^44.0.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "^17.0.1",
"typescript": "~4.3.5"
},
"private": true,
"resolutions": {
"@react-native-community/datetimepicker": "4.0.0",
"@react-native-picker/picker": "2.2.1"
}
}