-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
151 lines (151 loc) · 4.77 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "health-app",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "DARK_MODE=media expo start --android",
"ios": "DARK_MODE=media expo start --ios",
"web": "DARK_MODE=media expo start --web",
"test": "jest --watchAll",
"test:ci": "jest --coverage",
"lint": "eslint",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"npx --yes eslint --fix"
]
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"./test.setup.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!metro.config.js",
"!nativewind-env.d.ts",
"!tailwind.config.js",
"!components/ui/**",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/expo-env.d.ts",
"!**/.expo/**"
]
},
"dependencies": {
"@expo/html-elements": "^0.4.2",
"@expo/vector-icons": "^14.0.4",
"@gluestack-ui/accordion": "^1.0.8",
"@gluestack-ui/actionsheet": "^0.2.46",
"@gluestack-ui/alert": "^0.1.16",
"@gluestack-ui/alert-dialog": "^0.1.32",
"@gluestack-ui/avatar": "^0.1.18",
"@gluestack-ui/button": "^1.0.8",
"@gluestack-ui/checkbox": "^0.1.33",
"@gluestack-ui/divider": "^0.1.10",
"@gluestack-ui/fab": "^0.1.22",
"@gluestack-ui/form-control": "^0.1.19",
"@gluestack-ui/icon": "^0.1.25",
"@gluestack-ui/image": "^0.1.11",
"@gluestack-ui/image-viewer": "^0.0.5",
"@gluestack-ui/input": "^0.1.32",
"@gluestack-ui/link": "^0.1.23",
"@gluestack-ui/menu": "^0.2.37",
"@gluestack-ui/modal": "^0.1.35",
"@gluestack-ui/nativewind-utils": "^1.0.26",
"@gluestack-ui/overlay": "^0.1.16",
"@gluestack-ui/popover": "^0.1.43",
"@gluestack-ui/pressable": "^0.1.17",
"@gluestack-ui/progress": "^0.1.18",
"@gluestack-ui/radio": "^0.1.34",
"@gluestack-ui/select": "^0.1.30",
"@gluestack-ui/slider": "^0.1.26",
"@gluestack-ui/spinner": "^0.1.15",
"@gluestack-ui/switch": "^0.1.23",
"@gluestack-ui/textarea": "^0.1.24",
"@gluestack-ui/toast": "^1.0.8",
"@gluestack-ui/tooltip": "^0.1.38",
"@legendapp/motion": "^2.4.0",
"@medplum/expo-polyfills": "^3.2.28",
"@medplum/fhirtypes": "^3.2.28",
"@medplum/react-hooks": "^3.2.28",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"babel-plugin-module-resolver": "^5.0.2",
"expo": "^52.0.23",
"expo-auth-session": "~6.0.1",
"expo-blur": "~14.0.3",
"expo-constants": "~17.0.3",
"expo-crypto": "~14.0.1",
"expo-dev-client": "~5.0.10",
"expo-file-system": "~18.0.7",
"expo-font": "~13.0.2",
"expo-haptics": "~14.0.0",
"expo-image": "~2.0.4",
"expo-image-picker": "~16.0.4",
"expo-linking": "~7.0.3",
"expo-router": "~4.0.15",
"expo-secure-store": "~14.0.1",
"expo-sharing": "~13.0.1",
"expo-splash-screen": "~0.29.18",
"expo-standard-web-crypto": "^2.0.0",
"expo-status-bar": "~2.0.0",
"expo-symbols": "~0.2.0",
"expo-system-ui": "~4.0.7",
"expo-video": "~2.0.5",
"expo-web-browser": "~14.0.1",
"lucide-react-native": "^0.469.0",
"nativewind": "^4.1.23",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-css-interop": "^0.1.22",
"react-native-gesture-handler": "^2.21.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "^15.10.1",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.5",
"scheduler": "^0.25.0",
"tailwindcss": "^3.4.17",
"use-context-selector": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@medplum/definitions": "^3.2.28",
"@medplum/mock": "^3.2.28",
"@testing-library/react-native": "^13.0.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.18",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"jest-when": "^3.7.0",
"jscodeshift": "^17.1.1",
"lint-staged": "^15.3.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react-test-renderer": "18.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"private": true
}