-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.23 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.23 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "native-template",
"private": true,
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"dev": "expo start --clear",
"android": "expo run:android",
"healthcheck": "npx expo-doctor",
"ios": "expo run:ios",
"web": "expo start --web",
"check": "biome check .",
"fix": "biome check --diagnostic-level=error --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write --unsafe .",
"format": "biome format .",
"format:write": "biome format . --write",
"typecheck": "tsgo --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:log": "vitest run --reporter verbose",
"generate:assets": "bun lib/scripts/generate-static-assets.ts",
"analyze-bundle": "EXPO_UNSTABLE_ATLAS=true expo export --platform android && echo '📊 Bundle analysis complete! Run: npx expo-atlas' && npx expo-atlas",
"predev": "bun x expo prebuild; bun run generate:assets",
"prebuild": "bun run predev",
"prepare": "husky"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.3",
"@lottiefiles/dotlottie-react": "^0.17.12",
"@react-navigation/drawer": "^7.5.0",
"@react-navigation/elements": "^2.9.3",
"@react-navigation/native": "7.1.8",
"@rn-primitives/portal": "^1.3.0",
"@rn-primitives/select": "^1.2.0",
"@rn-primitives/slot": "^1.2.0",
"@tanstack/react-query": "^5.90.12",
"@trpc/client": "^11.8.1",
"@trpc/react-query": "^11.8.1",
"@trpc/server": "^11.8.1",
"@trpc/tanstack-react-query": "^11.8.1",
"@ts-utilities/core": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"expo": "^54.0.30",
"expo-constants": "~18.0.12",
"expo-font": "~14.0.10",
"expo-haptics": "^15.0.8",
"expo-image": "^3.0.11",
"expo-linking": "~8.0.11",
"expo-router": "^6.0.21",
"expo-secure-store": "~15.0.8",
"expo-server": "^1.0.5",
"expo-splash-screen": "^31.0.13",
"expo-system-ui": "^6.0.9",
"lottie-react-native": "^7.3.4",
"mime-types": "^3.0.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "1.18.5",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.16.0",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.5.1",
"superjson": "^2.2.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@testing-library/jest-dom": "^6.9.1",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.3",
"@types/react": "~19.1.10",
"expo-atlas": "^0.4.3",
"expo-dev-client": "~6.0.20",
"husky": "^9.1.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.2",
"ultracite": "7.0.11",
"uniwind": "^1.2.2",
"vitest": "^4.0.16",
"zod": "^4.2.1"
},
"engines": {
"node": "22.x"
},
"author": "Sohan Emon <sohanemon@outlook.com>",
"description": "A template for creating native apps with Expo and React Native",
"icon": "/assets/favicon.png",
"license": "MIT"
}