-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.79 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
{
"name": "mealzen",
"main": "expo-router/entry",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"start": "expo start",
"android": "expo run:android --device 'Local_Pixel_8_API_35'",
"android:tablet": "expo run:android --device 'Local_Pixel_Tablet_API_35'",
"android:small-tablet": "expo run:android --device '7_inch_tablet_API_35'",
"android:last": "expo run:android",
"android:e2e": "expo run:ios --device 'E2E_Pixel_8_API_35'",
"ios": "expo run:ios --device 'Local iphone 16 ios 18'",
"ios:tablet": "expo run:ios --device 'Local ipad air ios 18'",
"ios:last": "expo run:ios",
"ios:e2e": "expo run:ios --device 'E2E iphone 13 ios 18'",
"e2e": "maestro test .maestro/",
"prebuild": "expo prebuild",
"prebuild:clean": "expo prebuild --clean",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"prettify": "prettier --write --cache --ignore-unknown --log-level error .",
"doctor": "expo-doctor",
"build:preview": "eas build --platform all --profile preview",
"build:android": "eas build -p android",
"submit:android": "eas submit -p android"
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,md}": "prettier --write --cache --ignore-unknown --log-level error"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@azure/core-asynciterator-polyfill": "^1.0.2",
"@expo-google-fonts/noto-sans": "^0.2.3",
"@expo/vector-icons": "^14.0.2",
"@hookform/resolvers": "^3.9.0",
"@journeyapps/react-native-quick-sqlite": "^2.4.0",
"@powersync/react-native": "^1.17.0",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-menu/menu": "^1.1.4",
"@react-navigation/native": "^6.0.2",
"@sentry/react-native": "^6.6.0",
"@supabase/supabase-js": "^2.45.4",
"@tanstack/react-query": "^5.66.0",
"dayjs": "^1.11.13",
"expo": "~51.0.38",
"expo-build-properties": "~0.12.5",
"expo-checkbox": "~3.0.0",
"expo-constants": "~16.0.2",
"expo-font": "~12.0.9",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.23",
"expo-screen-orientation": "~7.0.5",
"expo-secure-store": "^13.0.2",
"expo-splash-screen": "~0.27.6",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-web-browser": "~13.0.3",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-native": "0.74.5",
"react-native-device-info": "^14.0.2",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-element-dropdown": "^2.12.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-logs": "^5.3.0",
"react-native-purchases": "^8.5.0",
"react-native-purchases-ui": "^8.5.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-toast-message": "^2.2.1",
"react-native-ui-datepicker": "^2.0.4",
"react-native-web": "~0.19.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@eslint/js": "^9.8.0",
"@testing-library/react-native": "^12.7.2",
"@total-typescript/shoehorn": "^0.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.12",
"@types/react": "~18.2.45",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-testing-library": "^6.3.0",
"expo-doctor": "^1.11.2",
"husky": "^9.1.3",
"jest": "^29.2.1",
"jest-expo": "~51.0.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
}
}