-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 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
{
"name": "hanibi",
"main": "expo/AppEntry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:clean": "expo run:ios --clean",
"ios:device": "expo run:ios --device",
"web": "expo start --web",
"test": "jest --runInBand",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky",
"simulator:list": "xcrun simctl list devices",
"simulator:reset": "node scripts/reset-ios-simulator.js",
"simulator:erase": "xcrun simctl erase all"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md}": [
"prettier --write"
]
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/bottom-tabs": "^7.7.3",
"@react-navigation/elements": "^2.1.1",
"@react-navigation/native": "^7.1.8",
"@react-navigation/native-stack": "^7.6.2",
"@tanstack/react-query": "^5.90.11",
"@tanstack/react-query-devtools": "^5.91.1",
"axios": "^1.13.2",
"expo": "~54.0.24",
"expo-blur": "~15.0.7",
"expo-dev-client": "~6.0.20",
"expo-font": "~14.0.9",
"expo-linear-gradient": "~15.0.7",
"expo-splash-screen": "~31.0.11",
"expo-status-bar": "~3.0.8",
"expo-symbols": "~1.0.7",
"expo-updates": "~29.0.15",
"expo-web-browser": "~15.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "^15.12.1",
"react-native-svg-transformer": "^1.5.2",
"react-native-web": "~0.21.0",
"socket.io-client": "^4.8.1",
"victory-native": "^36.9.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@expo/ngrok": "^4.1.3",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.1.7",
"jest-expo": "~54.0.13",
"lint-staged": "^16.2.3",
"prettier": "^3.3.3",
"react-test-renderer": "19.1.0",
"ts-jest": "^29.4.4",
"typescript": "~5.9.2"
},
"private": true
}