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
73 lines (73 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.43 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
{
"name": "@react-navigation/example",
"description": "Demo app to showcase various functionality of React Navigation",
"version": "5.1.0",
"private": true,
"scripts": {
"start": "expo start",
"client": "expo start --dev-client",
"web": "expo start --web",
"android": "expo run:android",
"ios": "expo run:ios",
"preios": "pod-install",
"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": "playwright test --config=e2e/playwright.config.ts"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-masked-view/masked-view": "0.2.6",
"color": "^4.2.3",
"expo": "^45.0.0",
"expo-asset": "~8.5.0",
"expo-blur": "~11.1.0",
"expo-linking": "~3.1.0",
"expo-splash-screen": "~0.15.1",
"expo-status-bar": "~1.3.0",
"expo-updates": "~0.13.2",
"koa": "^2.13.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-pager-view": "5.4.15",
"react-native-paper": "^4.12.1",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-tab-view": "^3.1.1",
"react-native-vector-icons": "^9.1.0",
"react-native-web": "0.17.7"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/node": "^7.14.2",
"@expo/webpack-config": "~0.16.2",
"@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": "^17.0.47",
"@types/react-dom": "~17.0.11",
"@types/react-native": "~0.68.1",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "9.0.2",
"cheerio": "^1.0.0-rc.9",
"expect-type": "^0.13.0",
"expo-cli": "^5.4.11",
"jest-dev-server": "^5.0.3",
"jimp": "^0.16.1",
"mock-require": "^3.0.3",
"mock-require-assets": "^0.0.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"pod-install": "^0.1.23",
"react-native-flipper": "~0.125.0",
"react-test-renderer": "17.0.2",
"serve": "^11.3.0",
"typescript": "^4.7.4"
}
}