-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "react-native-starter",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "eslint app/ lib/",
"test": "jest --verbose --passWithNoTests",
"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-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-native": "0.76.9"
},
"devDependencies": {
"@testing-library/react-native": "^12.9.0",
"react-test-renderer": "18.3.1",
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"jest": "^30.3.0",
"jest-expo": "~52.0.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)"
]
}
}