-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.84 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
{
"name": "jeka-aops-mobile",
"version": "0.2.0",
"license": "Apache-2.0",
"repository": "https://github.com/ChevCellios/jeka-aops",
"main": "index.ts",
"dependencies": {
"@dariyd/react-native-text-recognition": "^2.0.20",
"@react-native-async-storage/async-storage": "2.2.0",
"base64-js": "^1.5.1",
"expo": "~57.0.18",
"expo-asset": "~57.0.15",
"expo-audio": "~57.0.4",
"expo-camera": "~57.0.4",
"expo-constants": "~57.0.16",
"expo-dev-client": "~57.0.16",
"expo-document-picker": "~57.0.1",
"expo-file-system": "~57.0.6",
"expo-image-manipulator": "~57.0.14",
"expo-location": "~57.0.14",
"expo-sharing": "~57.0.16",
"expo-status-bar": "~57.0.1",
"expo-video": "~57.0.3",
"expo-video-thumbnails": "~57.0.1",
"jpeg-js": "^0.4.4",
"react": "19.2.3",
"react-native": "0.86.3",
"react-native-audio-api": "0.13.3",
"react-native-fast-tflite": "^3.0.1",
"react-native-gesture-handler": "~2.32.0",
"react-native-nitro-modules": "^0.37.1",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-worklets": "0.10.1"
},
"devDependencies": {
"@types/react": "~19.2.4",
"eslint": "^9.39.5",
"eslint-config-expo": "~57.0.2",
"typescript": "~6.0.3",
"vitest": "^4.1.10"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run lint && npm run typecheck && npm test"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@dariyd/react-native-text-recognition",
"react-native-fast-tflite"
]
}
}
}
}