-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.22 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
{
"name": "react-native-starter",
"private": true,
"version": "1.0.0",
"main": "expo-router/entry",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"build": "expo export --platform web",
"check:expo": "expo install --check",
"check:store-ready": "node scripts/check-store-readiness.js",
"lint": "eslint app/ lib/",
"test": "jest --verbose --coverage --runInBand",
"version:patch": "node scripts/bump-version.js patch",
"version:minor": "node scripts/bump-version.js minor",
"version:major": "node scripts/bump-version.js major"
},
"dependencies": {
"expo": "~52.0.0",
"expo-asset": "~11.0.5",
"expo-auth-session": "~6.0.3",
"expo-crypto": "~14.0.2",
"expo-router": "~4.0.0",
"expo-secure-store": "~14.0.1",
"expo-status-bar": "~2.0.0",
"expo-web-browser": "~14.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.9",
"react-native-web": "~0.19.13"
},
"devDependencies": {
"@testing-library/react-native": "^12.9.0",
"react-test-renderer": "18.3.1",
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"jest": "~29.7.0",
"jest-expo": "~52.0.0"
},
"overrides": {
"@babel/core": "7.29.7",
"@babel/plugin-transform-modules-systemjs": "7.29.7",
"@tootallnate/once": "2.0.1",
"@xmldom/xmldom": "0.8.13",
"fast-uri": "3.1.2",
"flatted": "3.4.2",
"form-data": "4.0.6",
"lodash": "4.18.1",
"node-forge": "1.4.0",
"picomatch": "4.0.4",
"shell-quote": "^1.8.4",
"tar": "7.5.16",
"undici": "6.27.0",
"ws": "8.21.0"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@sentry/react-native|native-base|react-native-svg)"
],
"coverageThreshold": {
"global": {
"statements": 75,
"branches": 55,
"functions": 70,
"lines": 80
}
},
"coverageReporters": [
"text",
"text-summary",
"json-summary"
]
}
}