-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "odo",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"update": "yarn upgrade-interactive --latest",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\""
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@react-navigation/stack": "^6.3.17",
"eas-cli": "^7.7.0",
"expo": "~50.0.14",
"expo-build-properties": "~0.11.1",
"expo-image-picker": "^14.7.1",
"expo-linear-gradient": "12.7.2",
"expo-navigation-bar": "~2.8.1",
"expo-status-bar": "~1.11.1",
"lottie-react-native": "6.5.1",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-gesture-handler": "2.14.0",
"react-native-pager-view": "6.2.3",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "14.1.0",
"react-native-tab-view": "^3.5.1",
"react-native-webview": "13.6.4",
"socket.io-client": "^4.6.2",
"styled-components": "^6.0.0-rc.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.55",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"private": true,
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"editor.formatOnSave": true,
"bracketSameLine": false,
"wordWrap": "wordWrapColumn",
"printWidth": 80
}
}