-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.03 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
{
"name": "sizzle-client",
"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",
"watch": "tsc --noEmit --incremental --watch",
"lint": "eslint .",
"format": "eslint . --fix && prettier --write ."
},
"dependencies": {
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-shorthand-properties": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@expo/vector-icons": "^14.0.4",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native/babel-preset": "^0.76.3",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@tanstack/react-query": "^5.25.0",
"axios": "^1.7.7",
"expo": "~50.0.17",
"expo-constants": "~15.4.6",
"expo-font": "~11.10.3",
"expo-linking": "~6.2.2",
"expo-router": "~3.4.10",
"expo-status-bar": "~1.11.1",
"nativewind": "2.0.11",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-global-props": "^1.1.5",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-webview": "13.6.4",
"zustand": "^5.0.1",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/react": "~18.2.45",
"@types/react-native-global-props": "^1.1.6",
"eslint": "8",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.2.5",
"tailwindcss": "3.3.2",
"typescript": "^5.1.3"
},
"private": true
}