-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.99 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
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
{
"name": "kitchensink",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "DARK_MODE=media isWeb=false expo start --android",
"ios": "DARK_MODE=media isWeb=false expo start --ios",
"web": "DARK_MODE=media isWeb=true expo start --web",
"test": "jest --watchAll",
"extract-code": "node scripts/extractCode.js",
"extract-examples": "node scripts/extractExamples.js",
"add-imports": "node scripts/addImports.js",
"extract-docs-examples": "node scripts/extractCode.js; node scripts/extractExamples.js; node scripts/addImports.js"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/html-elements": "^0.4.2",
"@expo/vector-icons": "^14.0.2",
"@gluestack-ui/accordion": "^1.0.8",
"@gluestack-ui/actionsheet": "^0.2.46",
"@gluestack-ui/alert": "^0.1.16",
"@gluestack-ui/alert-dialog": "^0.1.32",
"@gluestack-ui/avatar": "^0.1.18",
"@gluestack-ui/button": "^1.0.8",
"@gluestack-ui/checkbox": "^0.1.33",
"@gluestack-ui/divider": "^0.1.10",
"@gluestack-ui/fab": "^0.1.22",
"@gluestack-ui/form-control": "^0.1.19",
"@gluestack-ui/icon": "^0.1.24-alpha.0",
"@gluestack-ui/image": "^0.1.11",
"@gluestack-ui/input": "^0.1.32",
"@gluestack-ui/link": "^0.1.23",
"@gluestack-ui/menu": "^0.2.37",
"@gluestack-ui/modal": "^0.1.35",
"@gluestack-ui/nativewind-utils": "^1.0.26-alpha.2",
"@gluestack-ui/overlay": "^0.1.16",
"@gluestack-ui/popover": "^0.1.43",
"@gluestack-ui/pressable": "^0.1.17",
"@gluestack-ui/progress": "^0.1.18",
"@gluestack-ui/radio": "^0.1.34",
"@gluestack-ui/select": "^0.1.30",
"@gluestack-ui/slider": "^0.1.26",
"@gluestack-ui/spinner": "^0.1.15",
"@gluestack-ui/switch": "^0.1.23",
"@gluestack-ui/textarea": "^0.1.24",
"@gluestack-ui/toast": "^1.0.8",
"@gluestack-ui/tooltip": "^0.1.36-alpha.0",
"@legendapp/motion": "^2.4.0",
"@react-navigation/native": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"expo": "52.0.11",
"expo-font": "~13.0.1",
"expo-image": "~2.0.2",
"expo-linking": "~7.0.3",
"expo-router": "~4.0.9",
"expo-splash-screen": "~0.29.13",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.4",
"expo-updates": "~0.26.9",
"expo-web-browser": "~14.0.1",
"lucide-react": "^0.446.0",
"lucide-react-native": "^0.445.0",
"nativewind": "^4.1.23",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.3",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "~4.1.0",
"react-native-svg": "^15.9.0",
"react-native-web": "~0.19.13",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.3.12",
"jest": "^29.2.1",
"jest-expo": "~52.0.2",
"jscodeshift": "^0.15.2",
"prettier": "^3.3.3",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"private": true
}