-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "playground",
"version": "1.0.0",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"start": "expo start",
"prebuild": "expo prebuild",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web"
},
"dependencies": {
"@expo-google-fonts/lora": "^0.3.0",
"@rn-primitives/slot": "^1.1.0",
"@rn-primitives/types": "^1.1.0",
"@shopify/react-native-skia": "^2.4.18",
"clsx": "^2.1.1",
"expo": "^55.0.0-preview.7",
"expo-blur": "~55.0.2",
"expo-constants": "~55.0.2",
"expo-dev-client": "~55.0.4",
"expo-font": "~55.0.2",
"expo-linear-gradient": "~55.0.2",
"expo-linking": "~55.0.3",
"expo-mesh-gradient": "~55.0.2",
"expo-navigation-bar": "~55.0.2",
"expo-router": "~55.0.0-beta.3",
"expo-status-bar": "~55.0.2",
"expo-symbols": "~55.0.2",
"expo-system-ui": "~55.0.2",
"expo-video": "~55.0.2",
"lottie-react-native": "~7.3.1",
"lucide-react-native": "^0.562.0",
"nwui-cli": "^0.4.14",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.1",
"react-native-css-interop": "^0.2.1",
"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.20.0",
"react-native-svg": "15.15.1",
"react-native-worklets": "0.7.2",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@types/react": "~19.2.2",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"nativewind": "^4.2.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.2",
"typescript": "~5.9.2"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"main": "expo-router/entry",
"private": true,
"reanimated": {
"staticFeatureFlags": {
"ENABLE_SHARED_ELEMENT_TRANSITIONS": true
}
}
}