-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "qraft-qr-scanner",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"start-web": "expo start --web",
"start-web-dev": "DEBUG=expo* expo start --web",
"lint": "expo lint app hooks services repositories infra ui constants types",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage && bun run coverage:human",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest",
"coverage:human": "bun run scripts/coverage-human-report.mjs"
},
"dependencies": {
"@expo-google-fonts/nunito": "^0.4.2",
"expo": "~54.0.33",
"expo-camera": "~17.0.8",
"expo-clipboard": "~8.0.7",
"expo-file-system": "~19.0.17",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-media-library": "~18.2.0",
"expo-router": "~6.0.23",
"expo-sharing": "~14.0.8",
"expo-splash-screen": "~31.0.13",
"expo-sqlite": "~16.0.10",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"lucide-react-native": "^1.8.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@expo/ngrok": "^4.1.3",
"@types/react": "~19.1.10",
"eslint": "^9.31.0",
"eslint-config-expo": "~10.0.0",
"typescript": "~5.9.2",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
},
"overrides": {
"axios": "1.13.2"
},
"private": true
}