-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.27 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
{
"name": "browser-sign-in",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "expo start --dev-client",
"start-ios": "react-native run-ios --no-packager",
"start-android": "react-native run-android --no-packager",
"android": "expo run:android",
"ios": "expo run:ios",
"expo-doctor": "npx expo-doctor",
"doctor": "react-native doctor",
"fix-deps": "expo install --fix --yarn",
"deduplicate": "npx yarn-deduplicate yarn.lock",
"pod-install": "rm -rf ./ios/Pods && npx pod-install --non-interactive",
"clean": "react-native clean --include 'android,cocoapods,metro,watchman,yarn,npm' && rm -rf ./.expo && rm -rf ./ios/build && rm -rf ./ios/Pods && rm -rf ./android/build && rm -rf ./android/.gradle && rm -rf ./android/.idea && rm -rf ./android/.kotlin && rm -rf ./android/app/.cxx",
"test": "jest"
},
"dependencies": {
"@okta/okta-react-native": "~2.17.1",
"events": "^3.3.0",
"expo": "~54.0.13",
"expo-splash-screen": "^31.0.10",
"expo-status-bar": "^3.0.8",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-native": "^0.79.6",
"react-native-dotenv": "^3.4.11",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "^4.1.3",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.17.1",
"react-native-worklets": "^0.6.1",
"semver": "^7.7.2"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/runtime": "^7.28.4",
"@react-native-community/cli": "^20.0.2",
"@react-native/babel-preset": "^0.79.6",
"@react-native/metro-config": "^0.79.6",
"@react-native/typescript-config": "^0.79.6",
"@types/react": "^19.2.2",
"typescript": "^5.9.3"
},
"resolutions": {
"**/@okta/okta-auth-js/broadcast-channel/@babel/runtime": "^7.28.4",
"**/expo/**/glob": "10.4.5",
"**/glob": "9.3.5",
"@xmldom/xmldom": "^0.8.12"
},
"jest": {
"preset": "react-native",
"automock": false,
"transformIgnorePatterns": [
"node_modules/(?!@okta|react-native|@react-native)"
],
"setupFiles": [
"./setupJest.js"
]
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@okta/okta-react-native",
"events"
]
}
}
}
}