-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.54 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
{
"name": "code-companion",
"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/ui": "~57.0.8",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-vector-icons/feather": "^13.1.2",
"@supabase/supabase-js": "^2.100.0",
"@tanstack/react-query": "^5.90.7",
"expo": "~57.0.11",
"expo-blur": "~57.0.2",
"expo-constants": "~57.0.3",
"expo-crypto": "~57.0.1",
"expo-dev-client": "~57.0.10",
"expo-font": "~57.0.0",
"expo-glass-effect": "~57.0.1",
"expo-haptics": "~57.0.1",
"expo-linking": "~57.0.4",
"expo-localization": "~57.0.1",
"expo-router": "~57.0.9",
"expo-splash-screen": "~57.0.5",
"expo-status-bar": "~57.0.1",
"expo-symbols": "~57.0.1",
"expo-system-ui": "~57.0.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.2",
"react-native-ease": "^0.4.0",
"react-native-enriched-markdown": "^0.4.1",
"react-native-gesture-handler": "~2.32.0",
"react-native-keyboard-controller": "1.21.9",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.26.0",
"react-native-svg": "15.15.4",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.10.1"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "29.5.14",
"@types/react": "~19.2.2",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.25.0",
"eslint-config-expo": "^57.0.0",
"eslint-config-prettier": "^10.1.8",
"jest": "~29.7.0",
"jest-expo": "~57.0.3",
"prettier": "^3.8.1",
"react-test-renderer": "19.2.3",
"typescript": "~6.0.3"
},
"private": true
}