forked from Mobile-Artificial-Intelligence/maid
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.66 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.66 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "maid",
"main": "expo-router/entry",
"version": "3.0.0",
"build": 27562,
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"build-android": "cd android && ./gradlew assembleRelease",
"build-android-debug": "cd android && ./gradlew assembleDebug",
"build-android-bundle": "cd android && ./gradlew bundleRelease",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --ci --detectOpenHandles --runInBand --forceExit",
"lint": "expo lint"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"<rootDir>/jest.env.js"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@novastera-oss/.*|expo-router|escape-string-regexp|react-navigation|@react-navigation/.*|@material/material-color-utilities)"
],
"moduleNameMapper": {
"\\.(png|jpg|jpeg|gif|webp|svg)$": "<rootDir>/__tests__/utilities/file-mock.js",
"^expo-speech-recognition$": "<rootDir>/__tests__/utilities/expo-speech-recognition-mock.js"
},
"testMatch": [
"**/__tests__/**/*.test.ts",
"**/__tests__/**/*.test.tsx",
"**/?(*.)+(test).ts",
"**/?(*.)+(test).tsx"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@material/material-color-utilities": "^0.3.0",
"@mistralai/mistralai": "^1.10.0",
"@novastera-oss/react-native-markdown-display": "^8.1.1",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/drawer": "^7.1.1",
"@react-navigation/native": "^7.0.14",
"@supabase/supabase-js": "^2.57.4",
"buffer": "^6.0.3",
"expo": "53.0.22",
"expo-application": "~6.1.5",
"expo-audio": "~0.4.9",
"expo-blur": "~14.1.5",
"expo-build-properties": "~0.14.8",
"expo-constants": "~17.1.7",
"expo-crypto": "~14.1.5",
"expo-device": "~7.1.4",
"expo-document-picker": "~13.1.6",
"expo-font": "~13.3.2",
"expo-haptics": "~14.1.4",
"expo-image": "~2.4.0",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.7",
"expo-localization": "~16.1.6",
"expo-network": "~7.1.5",
"expo-router": "~5.1.6",
"expo-secure-store": "~14.2.4",
"expo-speech": "~13.1.7",
"expo-speech-recognition": "^3.1.1",
"expo-splash-screen": "~0.30.10",
"expo-sqlite": "~15.2.14",
"expo-status-bar": "~2.2.3",
"expo-symbols": "~0.4.5",
"expo-system-ui": "~5.0.11",
"expo-web-browser": "~14.2.0",
"llama.rn": "^0.11.3",
"message-nodes": "^1.0.8",
"ollama": "^0.6.0",
"openai": "^5.23.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-gesture-handler": "~2.24.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "^15.15.3",
"react-native-url-polyfill": "^3.0.0",
"react-native-web": "^0.20.0",
"react-native-webview": "13.13.5",
"reanimated-color-picker": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.0.10",
"@types/react-test-renderer": "^18.3.0",
"dotenv": "^17.3.1",
"jest": "~29.7.0",
"jest-expo": "~53.0.14",
"react-test-renderer": "19.0.0",
"supabase": "^2.76.15",
"typescript": "~5.8.3"
},
"private": true,
"resolutions": {
"minimatch": ">=3.1.3"
}
}