-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.58 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.58 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
{
"name": "expo-uniwind-boilerplate",
"version": "1.0.0",
"description": "A React Native Expo boilerplate with TypeScript, Uniwind support.",
"license": "MIT",
"author": "Md Muhaiminul",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"web:build": "expo export -p web",
"web:preview": "npx serve dist",
"ts:check": "tsc",
"lint": "eslint . --fix",
"clean": "npx expo prebuild --clean",
"update": "npx expo install --check",
"devbuild:ios": "eas build -p ios --profile development",
"devbuild:android": "eas build -p android --profile development",
"devbuild:all": "eas build -p all --profile development",
"build:ios": "eas build -p ios --profile production",
"build:android": "eas build -p android --profile production",
"submit:android": "eas submit -p android --latest",
"submit:ios": "eas submit -p ios --latest",
"submit:all": "eas submit --platform",
"format": "prettier --write \"*/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@expo/metro-runtime": "^55.0.6",
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.15.5",
"@react-navigation/native": "^7.1.33",
"@react-navigation/native-stack": "^7.14.4",
"@tanstack/react-query": "^5.90.21",
"async-mutex": "^0.5.0",
"axios": "^1.13.6",
"clsx": "^2.1.1",
"expo": "~55.0.5",
"expo-constants": "~55.0.7",
"expo-font": "~55.0.4",
"expo-splash-screen": "~55.0.10",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-edge-to-edge": "1.7.0",
"react-native-gesture-handler": "~2.30.0",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-uuid": "^2.0.3",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.7.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"uniwind": "^1.5.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@types/react": "~19.2.14",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"eslint-config-universe": "^15.0.3",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"private": true
}