-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.79 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
{
"name": "tool-log",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start --dev-client",
"ios": "expo run:ios",
"android": "expo run:android",
"build:dev": "eas build --profile development",
"build:preview": "eas build --profile preview",
"build:prod": "eas build --profile production",
"prebuild": "expo prebuild",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --fix-type problem,suggestion,layout && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web",
"prepare": "husky install"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@expo-google-fonts/manrope": "^0.2.3",
"@expo/vector-icons": "^14.0.0",
"@gorhom/bottom-sheet": "^4.6.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.1.7",
"axios": "^1.7.2",
"expo": "^51.0.22",
"expo-constants": "~16.0.1",
"expo-dev-client": "~4.0.14",
"expo-dev-launcher": "^4.0.22",
"expo-font": "~12.0.9",
"expo-image": "~1.12.13",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.14",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.4",
"expo-web-browser": "~13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-nfc-manager": "^3.15.1",
"react-native-reanimated": "~3.14.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.4.0",
"react-native-unistyles": "^2.9.0",
"react-native-uuid": "^2.0.2",
"react-native-web": "~0.19.10",
"zustand": "^4.5.4",
"expo-blur": "~13.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/node": "^22.0.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^13.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"react-native-svg-transformer": "^1.5.0",
"typescript": "~5.5.4"
},
"eslintConfig": {
"extends": "universe/native",
"root": true,
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-console": [
"warn",
{
"allow": [
"warn",
"error"
]
}
],
"unused-imports/no-unused-imports": "warn"
},
"plugins": [
"unused-imports"
]
},
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}