-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
{
"name": "kids-camera",
"version": "1.0.0",
"main": "expo-router/entry",
"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",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/html-elements": "^0.10.1",
"@expo/vector-icons": "^14.0.0",
"@gluestack-ui/button": "^1.0.7",
"@gluestack-ui/icon": "^0.1.22",
"@gluestack-ui/modal": "^0.1.34",
"@gluestack-ui/nativewind-utils": "^1.0.23",
"@gluestack-ui/overlay": "^0.1.15",
"@gluestack-ui/switch": "^0.1.22",
"@gluestack-ui/toast": "^1.0.7",
"@legendapp/motion": "^2.4.0",
"@react-native-camera-roll/camera-roll": "^7.8.3",
"@react-native-community/cameraroll": "^4.1.2",
"@react-navigation/native": "^6.1.7",
"@shopify/react-native-skia": "^1.3.13",
"expo": "^51.0.32",
"expo-blur": "^13.0.2",
"expo-constants": "~16.0.1",
"expo-linking": "~6.3.1",
"expo-media-library": "~16.0.4",
"expo-router": "~3.5.14",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.4",
"expo-web-browser": "~13.0.3",
"gluestack-ui": "^0.7.9",
"nativewind": "next",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "^3.15.3",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.6.0",
"react-native-vision-camera": "^4.5.3",
"react-native-web": "~0.19.10",
"react-native-worklets-core": "^1.3.3",
"rtn-battery-status": "file:./modules/RTNBatteryStatus"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/ngrok": "^4.1.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.0",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}