-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 KB
/
package.json
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
{
"name": "expo-template-bare-typescript",
"description": "This bare project template includes TypeScript",
"version": "37.0.6",
"main": "index.js",
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"android:expo": "expo start --android",
"ios": "react-native run-ios",
"ios:expo": "expo start --ios",
"web": "expo start --web",
"start": "expo start --dev-client",
"pods": "cd ios && pod install",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"xcode": "xed -b ios",
"studio": "studio ./android"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-navigation/bottom-tabs": "^6.5.2",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.9.7",
"@react-navigation/stack": "^6.3.10",
"expo": "^47.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"lodash": "^4.17.15",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-appearance": "~0.3.3",
"react-native-gesture-handler": "~2.8.0",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@react-native-community/eslint-config": "^1.1.0",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.178",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^29.3.1",
"babel-preset-expo": "~9.2.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.6.3",
"jest-expo": "^47.0.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.6.3"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
},
"packageManager": "[email protected]"
}