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
76 lines (76 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.75 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
{
"name": "@react-navigation/example",
"description": "Demo app to showcase various functionality of React Navigation",
"version": "6.0.2",
"private": true,
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider expo start",
"client": "NODE_OPTIONS=--openssl-legacy-provider expo start --dev-client",
"web": "NODE_OPTIONS=--openssl-legacy-provider expo start --web",
"web:export": "NODE_OPTIONS=--openssl-legacy-provider expo export:web",
"android": "run-s check:prebuild run:android",
"run:android": "expo run:android",
"ios": "run-s check:prebuild run:ios",
"run:ios": "expo run:ios",
"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\"",
"test:e2e": "npx playwright test --config=e2e/playwright.config.ts",
"check:prebuild": "node ../scripts/check-prebuild.js"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-masked-view/masked-view": "0.2.7",
"color": "^4.2.3",
"expo": "~46.0.9",
"expo-asset": "~8.6.1",
"expo-blur": "~11.2.0",
"expo-linking": "~3.2.2",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-updates": "~0.14.5",
"koa": "^2.13.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.5",
"react-native-gesture-handler": "~2.5.0",
"react-native-pager-view": "5.4.24",
"react-native-paper": "^4.12.1",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-tab-view": "^3.3.4",
"react-native-vector-icons": "^9.1.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/node": "^7.14.2",
"@expo/webpack-config": "^0.16.27",
"@playwright/test": "^1.12.2",
"@types/cheerio": "^0.22.29",
"@types/jest-dev-server": "^4.2.0",
"@types/koa": "^2.13.3",
"@types/mock-require": "^2.0.0",
"@types/node-fetch": "^2.5.10",
"@types/react": "~18.0.0",
"@types/react-dom": "~18.0.0",
"@types/react-native": "~0.69.1",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~9.2.0",
"cheerio": "^1.0.0-rc.9",
"expect-type": "^0.13.0",
"expo-cli": "^6.0.5",
"jest-dev-server": "^5.0.3",
"jimp": "^0.16.1",
"mock-require": "^3.0.3",
"mock-require-assets": "^0.0.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"react-native-flipper": "~0.125.0",
"react-test-renderer": "18.0.0",
"serve": "^11.3.0",
"typescript": "^4.7.4"
}
}