-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.43 KB
/
package.json
File metadata and controls
83 lines (83 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
74
75
76
77
78
79
80
81
82
83
{
"name": "example",
"version": "0.0.1",
"private": true,
"main": "expo/AppEntry.js",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"start": "expo start --dev-client",
"test": "jest",
"ts-check": "yarn tsc --noEmit",
"lint-check": "yarn eslint App.tsx src/ && yarn prettier --check App.tsx src/",
"postinstall": "patch-package && expo prebuild"
},
"dependencies": {
"@expo/metro-config": "~0.18.1",
"@expo/metro-runtime": "^3.2.1",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/slider": "^4.5.2",
"@react-native-community/viewpager": "^5.0.11",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-navigation/elements": "^1.3.7",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@swmansion/icons": "^0.0.1",
"expo": "^51.0.0",
"expo-camera": "~15.0.9",
"expo-font": "~12.0.10",
"hoist-non-react-statics": "^3.3.2",
"invariant": "^2.2.4",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.1",
"react-native-gesture-handler": "link:..",
"react-native-reanimated": "3.10.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@react-native/eslint-config": "^0.74.83",
"@react-native/metro-config": "^0.74.83",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/metro-config": "^0.76.3",
"@types/react": "^18.3.1",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^7.32.0",
"jest": "^29.7.0",
"prettier": "2.7.1",
"react-test-renderer": "18.3.1",
"typescript": "^5.1.3"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint-plugin-react-native": "^4.0.0"
},
"engines": {
"node": ">=16"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"packageManager": "yarn@1.22.22"
}