-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.23 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "safeher",
"version": "2.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint --fix",
"format": "prettier -w .",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"npm run lint",
"npm run format"
]
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"semi": true,
"trailingComma": "none",
"tabWidth": 2,
"singleQuote": false,
"importOrder": [
"^\\u0000",
"^@/",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"root": true,
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
},
"dependencies": {
"@expo/webpack-config": "^19.0.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/material-top-tabs": "^6.6.5",
"@tamagui-extras/core": "^1.6.1",
"@tamagui-extras/form": "^1.9.0",
"@tamagui/animations-react-native": "^1.76.0",
"@tamagui/babel-plugin": "^1.76.0",
"@tamagui/config": "^1.76.0",
"@tamagui/font-inter": "^1.76.0",
"@tamagui/lucide-icons": "^1.76.0",
"@tamagui/themes": "^1.76.0",
"@tanstack/query-async-storage-persister": "^5.8.7",
"@tanstack/react-query": "^5.8.7",
"@tanstack/react-query-persist-client": "^5.8.9",
"axios": "^1.6.2",
"expo": "49.0.19",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.12",
"expo-font": "~11.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-location": "~16.1.0",
"expo-router": "2.0.13",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-gesture-handler": "~2.12.0",
"react-native-gifted-chat": "^2.4.0",
"react-native-maps": "1.7.1",
"react-native-pager-view": "6.2.0",
"react-native-parsed-text": "^0.0.22",
"react-native-popover-view": "^5.1.8",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-tab-view": "^3.5.2",
"react-native-typing-animation": "^0.1.7",
"tamagui": "^1.76.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@tanstack/eslint-plugin-query": "^5.8.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "~18.2.37",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
}
}