-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.88 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "dertly",
"version": "1.0.0",
"license": "UNLICENSED",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"update-all": "npx npm-check-updates -u && npm install",
"update-minor": "npx npm-check-updates -u --target minor && npm install",
"update-patch": "npx npm-check-updates -u --target patch && npm install",
"check-updates": "npx npm-check-updates",
"fix-deps": "npm install --legacy-peer-deps",
"clean-install": "npx rimraf node_modules package-lock.json && npm install",
"clear-cache": "npx expo start --clear",
"doctor": "npx expo doctor",
"optimize": "npx expo export --experimental-bundle-splitting"
},
"dependencies": {
"@expo/vector-icons": "^14.1.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@react-native-community/slider": "4.5.6",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@tanstack/react-query": "^5.84.1",
"axios": "^1.11.0",
"date-fns": "^4.1.0",
"expo": "~53.0.20",
"expo-auth-session": "^6.2.1",
"expo-av": "^15.1.7",
"expo-blur": "~14.1.5",
"expo-constants": "~17.1.7",
"expo-device": "~7.1.4",
"expo-font": "~13.3.2",
"expo-haptics": "~14.1.4",
"expo-image-picker": "~16.1.4",
"expo-linear-gradient": "~14.1.5",
"expo-local-authentication": "^16.0.5",
"expo-localization": "~16.1.6",
"expo-secure-store": "^14.2.3",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"lottie-react-native": "7.2.2",
"react": "19.0.0",
"react-hook-form": "^7.62.0",
"react-native": "0.79.5",
"react-native-base64": "^0.2.1",
"react-native-gesture-handler": "~2.24.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-swipe-list-view": "^3.2.9",
"react-native-toast-message": "^2.3.3",
"socket.io-client": "^4.8.1",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@expo/metro-config": "~0.20.0",
"@types/react": "~19.0.10",
"@types/react-native": "~0.73.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "~29.7.0",
"metro": "^0.82.0",
"prettier": "^3.6.2",
"typescript": "~5.8.3"
},
"private": true,
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react",
"react-hooks",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true,
"arrowParens": "always"
}
}