-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.11 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.11 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
113
114
{
"name": "chatterui",
"main": "expo-router/entry",
"version": "0.8.8",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"postinstall": "patch-package",
"lint": "eslint app db lib --ignore-pattern db/migrations",
"lint:fix": "eslint app db lib --ignore-pattern db/migrations --fix",
"prebuild": "cross-env APP_VARIANT=development expo prebuild --clean",
"prebuild:android": "cross-env APP_VARIANT=development expo prebuild --clean --platform android",
"dev:android": "cross-env APP_VARIANT=development expo run:android",
"dev:ios": "cross-env APP_VARIANT=development expo run:ios",
"migrate": "npx drizzle-kit generate",
"patchsql": "npx patch-package expo-sqlite --exclude \"\\.project|\\.cxx|\\.c|\\.h|build|bin\" --case-sensitive-path-filtering",
"patchfetch": "npx patch-package expo --include '\".*fetch\\.ts$|.*NativeResponse\\.kt$\"'",
"patchfs": "npx patch-package expo-file-system --include \"\\.kt$\""
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@babel/traverse": "^7.24.1",
"@expo/vector-icons": "^15.0.3",
"@react-native-community/slider": "5.1.2",
"@shopify/flash-list": "2.0.2",
"@vali98/react-native-cpu-info": "^0.2.0",
"@vali98/react-native-fs": "^0.2.4",
"@vali98/react-native-png-utils": "^0.1.2",
"@vali98/react-native-process-text": "^0.1.3",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-react-compiler": "^19.0.0-beta-af1b7da-20250417",
"cui-llama.rn": "^1.11.9",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.2",
"eslint-plugin-react-compiler": "^0.0.0-experimental-7c1344f-20241009",
"expo": "~55.0.17",
"expo-application": "~55.0.14",
"expo-asset": "~55.0.10",
"expo-build-properties": "~55.0.13",
"expo-camera": "~55.0.16",
"expo-clipboard": "~55.0.13",
"expo-constants": "~55.0.9",
"expo-crypto": "~55.0.14",
"expo-device": "~55.0.15",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.11",
"expo-font": "~55.0.4",
"expo-image": "~55.0.9",
"expo-keep-awake": "~55.0.4",
"expo-linear-gradient": "~55.0.13",
"expo-linking": "~55.0.14",
"expo-local-authentication": "~55.0.13",
"expo-localization": "~55.0.13",
"expo-notifications": "~55.0.20",
"expo-router": "~55.0.13",
"expo-screen-orientation": "~55.0.13",
"expo-speech": "~55.0.13",
"expo-splash-screen": "~55.0.19",
"expo-sqlite": "~55.0.15",
"expo-system-ui": "~55.0.16",
"mime": "^4.0.7",
"react": "19.2.0",
"react-compiler-runtime": "^19.0.0-beta-a7bf2bd-20241110",
"react-dom": "19.2.0",
"react-fast-hoc": "^0.3.2",
"react-native": "0.83.6",
"react-native-background-actions": "^4.0.1",
"react-native-gesture-handler": "~2.30.0",
"react-native-keyboard-controller": "^1.21.6",
"react-native-markdown-display": "^7.0.2",
"react-native-mathjax-svg": "^0.9.9",
"react-native-mmkv": "^4.0.0-beta.12",
"react-native-nitro-modules": "^0.31.0",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-simple-toast": "^3.2.0",
"react-native-svg": "15.15.3",
"react-native-worklets": "0.7.4",
"upgrade": "^1.1.0",
"zod": "^3.24.1",
"zustand": "^5.0.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@types/lodash.merge": "^4.6.9",
"@types/mime": "^3.0.4",
"@types/react": "~19.2.10",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "~55.0.8",
"cross-env": "^7.0.3",
"eslint": "^9.38.0",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-internal": "file:./eslint",
"eslint-plugin-prettier": "^5.1.3",
"patch-package": "^8.0.0",
"prettier": "^3.2.4",
"typescript": "~5.9.2"
},
"overrides": {
"markdown-it": "14.1.1",
"esbuild": "^0.25.0",
"@xmldom/xmldom": ">=0.8.13",
"uuid": ">=14.0.0"
},
"private": true
}