-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.8 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "lumiere",
"version": "1.2.1",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:chrome": "bash scripts/build-chrome-extension.sh",
"build:desktop": "bash scripts/build-desktop.sh",
"desktop:dev": "npx expo export --platform web && npx electron desktop/main.js",
"sauce:upload": "./.saucelabs/upload-app.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"maestro:test": "maestro test .maestro/",
"maestro:test:ios": "maestro test .maestro/",
"maestro:test:android": "maestro test .maestro/"
},
"dependencies": {
"@bacons/apple-targets": "^4.0.3",
"@expo/vector-icons": "^15.0.3",
"@openrouter/sdk": "^0.8.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-masked-view/masked-view": "^0.3.2",
"@shopify/flash-list": "2.2.2",
"expo": "~54.0.33",
"expo-av": "^16.0.8",
"expo-background-task": "^1.0.10",
"expo-calendar": "^15.0.8",
"expo-clipboard": "~8.0.8",
"expo-constants": "^18.0.13",
"expo-contacts": "^15.0.11",
"expo-crypto": "^15.0.8",
"expo-document-picker": "^14.0.8",
"expo-file-system": "^19.0.21",
"expo-font": "~14.0.11",
"expo-glass-effect": "^0.1.9",
"expo-haptics": "^15.0.8",
"expo-image-manipulator": "^14.0.8",
"expo-image-picker": "^17.0.10",
"expo-linear-gradient": "^15.0.8",
"expo-linking": "^8.0.11",
"expo-local-authentication": "^17.0.8",
"expo-localization": "^17.0.8",
"expo-notifications": "^0.32.16",
"expo-quick-actions": "^6.0.1",
"expo-router": "~6.0.23",
"expo-secure-store": "^15.0.8",
"expo-share-intent": "^5.1.1",
"expo-sharing": "^14.0.8",
"expo-speech": "^14.0.8",
"expo-splash-screen": "^31.0.13",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "^6.0.9",
"expo-task-manager": "^14.0.9",
"expo-updates": "~29.0.16",
"expo-web-browser": "^15.0.10",
"i18next": "^25.8.11",
"jotai": "^2.17.1",
"ollama": "^0.6.3",
"prism-react-renderer": "^2.4.1",
"react": "19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.4",
"react-native": "0.81.5",
"react-native-compressor": "^1.16.0",
"react-native-keyboard-controller": "1.20.7",
"react-native-markdown-display": "^7.0.2",
"react-native-reanimated": "~4.2.2",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.23.0",
"react-native-svg": "15.15.3",
"react-native-web": "^0.21.2",
"react-native-webview": "~13.16.0",
"react-native-worklets": "0.7.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "~29.5.14",
"@types/react": "~19.2.14",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"babel-preset-expo": "^54.0.10",
"electron": "^40.4.1",
"electron-builder": "^26.8.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"jest-expo": "^54.0.17",
"prettier": "^3.8.1",
"react-native-svg-transformer": "^1.5.3",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.2"
},
"private": true,
"expo": {
"autolinking": {
"nativeModulesDir": "./modules"
}
}
}