-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"scripts": {
"start": "expo start",
"doctor": "npx expo-doctor",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint --color --ext .js,.jsx src App.js",
"lint-fix": "npm run lint -- --fix",
"lint-quiet": "npm run lint -- --quiet",
"format": "prettier \"src/**/*{.js,.jsx}\" App.js",
"format-write": "npm run format -- --write",
"format-check": "npm run format -- --check"
},
"dependencies": {
"@react-native-masked-view/masked-view": "0.3.1",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"expo": "^51.0.2",
"expo-barcode-scanner": "~13.0.1",
"expo-camera": "~15.0.6",
"expo-constants": "~16.0.1",
"expo-face-detector": "~12.7.1",
"expo-file-system": "~17.0.1",
"expo-media-library": "~16.0.3",
"expo-screen-orientation": "~7.0.4",
"expo-updates": "~0.25.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-is-iphonex": "^1.0.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@babel/core": "^7.24",
"@react-native-community/eslint-config": "^3.2.0",
"babel-preset-expo": "~11.0",
"eslint": "^8.57",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2"
},
"private": true
}