-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.53 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.53 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
{
"name": "my-app",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "npx expo start",
"lint": "npx expo lint",
"lint:fix": "npx expo lint --fix",
"check:types": "tsc --noEmit",
"check:format": "prettier --check \"**/*.{js,ts,tsx,css,json}\"",
"format": "prettier --write \"**/*.{js,ts,tsx,css,json}\"",
"generate:topic-explanations": "node --experimental-strip-types scripts/generate-topic-explanations.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --runInBand --coverage=false __tests__/unit",
"test:integration": "jest --runInBand --coverage=false __tests__/integration --passWithNoTests",
"test:e2e": "maestro test e2e/maestro --include-tags smoke",
"test:e2e:ai": "maestro test e2e/maestro --include-tags ai",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-segmented-control/segmented-control": "2.5.7",
"@supabase/supabase-js": "^2.100.0",
"@tanstack/react-query": "^5.90.7",
"expo": "~55.0.17",
"expo-constants": "~55.0.7",
"expo-crypto": "~55.0.14",
"expo-dev-client": "~55.0.28",
"expo-font": "~55.0.6",
"expo-glass-effect": "~55.0.8",
"expo-haptics": "~55.0.14",
"expo-linking": "~55.0.14",
"expo-localization": "~55.0.13",
"expo-router": "~55.0.13",
"expo-splash-screen": "~55.0.19",
"expo-status-bar": "~55.0.4",
"expo-symbols": "~55.0.5",
"expo-system-ui": "~55.0.16",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.6",
"react-native-ease": "^0.4.0",
"react-native-enriched-markdown": "^0.4.1",
"react-native-gesture-handler": "~2.30.0",
"react-native-keyboard-controller": "1.20.7",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.7.4"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "29.5.14",
"@types/react": "~19.2.10",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.25.0",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^10.1.8",
"jest": "~29.7.0",
"jest-expo": "~55.0.16",
"prettier": "3.6.2",
"react-test-renderer": "19.2.0",
"typescript": "~5.9.2"
},
"private": true
}