-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.8 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.8 KB
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
{
"name": "trofinho",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"tunnel": "expo start --tunnel",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"db:diff": "supabase db diff",
"db:push": "supabase db push",
"db:types": "npx supabase gen types typescript --linked > src/types/database.types.ts",
"build": "EAS_BUILD_NO_EXPO_GO_WARNING=true npx eas-cli@latest build --profile preview --platform android",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@expo-google-fonts/nunito": "^0.4.2",
"@expo/vector-icons": "^15.1.1",
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-community/netinfo": "11.5.2",
"@react-native-community/slider": "5.1.2",
"@sentry/react-native": "^8.7.0",
"@shopify/flash-list": "^2.3.1",
"@supabase/supabase-js": "^2.101.1",
"@tanstack/react-query": "^5.96.2",
"expo": "~55.0.13",
"expo-application": "~55.0.14",
"expo-clipboard": "~55.0.13",
"expo-constants": "~55.0.11",
"expo-crypto": "~55.0.14",
"expo-dev-client": "~55.0.24",
"expo-device": "~55.0.14",
"expo-file-system": "~55.0.14",
"expo-font": "~55.0.6",
"expo-haptics": "~55.0.14",
"expo-image": "~55.0.8",
"expo-image-manipulator": "~55.0.15",
"expo-image-picker": "~55.0.18",
"expo-linear-gradient": "~55.0.13",
"expo-linking": "~55.0.12",
"expo-notifications": "~55.0.18",
"expo-router": "~55.0.11",
"expo-secure-store": "~55.0.13",
"expo-splash-screen": "~55.0.17",
"expo-status-bar": "~55.0.5",
"expo-system-ui": "~55.0.15",
"expo-updates": "~55.0.20",
"lucide-react-native": "^1.7.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.4",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-svg": "^15.15.4"
},
"devDependencies": {
"@expo/ngrok": "^4.1.3",
"@types/react": "~19.2.10",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^3.10.1",
"fast-check": "^4.6.0",
"prettier": "^3.8.1",
"skills": "^1.4.8",
"supabase": "^2.84.10",
"test-renderer": "^0.15.0",
"typescript": "^6.0.2",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"private": true,
"expo": {
"install": {
"exclude": [
"typescript",
"@sentry/react-native",
"@shopify/flash-list",
"react-native-safe-area-context",
"react-native-screens",
"react-native-svg"
]
}
}
}