forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.92 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
{
"name": "@react-navigation/example",
"description": "Demo app to showcase various functionality of React Navigation",
"version": "5.1.0",
"private": true,
"main": "./App.tsx",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "vite",
"server": "nodemon -e '.js,.ts,.tsx' --exec \"babel-node -i '/node_modules[/\\](?react-native)/' -x '.web.tsx,.web.ts,.web.js,.tsx,.ts,.js' --config-file ./server/babel.config.js server\"",
"e2e:native": "maestro test --debug-output maestro-debug-output -e APP_ID=org.reactnavigation.playground -e APP_SCHEME=rne:// e2e/maestro",
"e2e:web": "npx playwright test --config=e2e/playwright.config.ts"
},
"dependencies": {
"@callstack/liquid-glass": "^0.6.0",
"@expo/metro-runtime": "~6.1.2",
"@expo/react-native-action-sheet": "^4.1.1",
"@expo/vector-icons": "^15.0.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "workspace:^",
"@react-navigation/devtools": "workspace:^",
"@react-navigation/drawer": "workspace:^",
"@react-navigation/elements": "workspace:^",
"@react-navigation/material-top-tabs": "workspace:^",
"@react-navigation/native": "workspace:^",
"@react-navigation/native-stack": "workspace:^",
"@react-navigation/stack": "workspace:^",
"color": "^4.2.3",
"expo": "^54.0.12",
"expo-asset": "~12.0.9",
"expo-blur": "~15.0.7",
"expo-linking": "~8.0.8",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-updates": "~29.0.12",
"koa": "^3.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-drawer-layout": "workspace:^",
"react-native-edge-to-edge": "^1.6.1",
"react-native-gesture-handler": "~2.28.0",
"react-native-pager-view": "6.9.1",
"react-native-reanimated": "4.1.3",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "^4.18.0",
"react-native-tab-view": "workspace:^",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.6.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/node": "^7.28.0",
"@babel/plugin-transform-strict-mode": "^7.27.1",
"@playwright/test": "^1.53.0",
"@types/cheerio": "^0.22.35",
"@types/koa": "^2.15.0",
"@types/mock-require": "^3.0.0",
"@types/react": "~19.1.10",
"@types/react-dom": "~19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "~54.0.0",
"cheerio": "^1.1.0",
"expect-type": "^1.2.1",
"mock-require-assets": "^0.0.3",
"nodemon": "^3.1.10",
"npm-run-all2": "^8.0.4",
"react-native-builder-bob": "^0.40.12",
"react-native-monorepo-config": "^0.3.0",
"react-test-renderer": "19.1.0",
"typescript": "^5.9.2",
"vite": "^7.1.1",
"vite-plugin-commonjs": "^0.10.4",
"yaml": "^2.8.0"
}
}