-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.41 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
{
"name": "scheduler-app",
"version": "1.0.0",
"main": "expo-router/entry",
"dependencies": {
"@expo/metro-runtime": "~56.0.14",
"@hookform/resolvers": "^5.4.0",
"@react-native-google-signin/google-signin": "^16.1.2",
"@react-native-kakao/core": "^2.4.5",
"@react-native-kakao/user": "^2.4.5",
"@sun-typeface/suit": "^2.0.5",
"@tanstack/react-query": "^5.100.13",
"axios": "^1.16.1",
"date-fns": "^4.3.0",
"expo": "~56.0.9",
"expo-blur": "~56.0.3",
"expo-constants": "~56.0.17",
"expo-dev-client": "~56.0.19",
"expo-font": "~56.0.5",
"expo-linking": "~56.0.13",
"expo-router": "~56.2.9",
"expo-secure-store": "~56.0.4",
"expo-status-bar": "~56.0.4",
"expo-updates": "~56.0.18",
"immer": "^11.1.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.76.0",
"react-native": "0.85.3",
"react-native-gesture-handler": "~2.31.1",
"react-native-mmkv": "^4.3.1",
"react-native-reanimated": "^4.3.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-svg": "15.15.4",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.8.3",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/react": "~19.2.2",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"dotenv": "^17.4.2",
"eslint": "^9.39.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"orval": "^7.13.2",
"prettier": "^3.8.3",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"start:android": "expo start --android",
"start:ios": "expo start --ios",
"web": "expo start --web",
"type-check": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"check": "npm run type-check && npm run lint && npm run format:check",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"api:generate": "orval --config orval.config.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0 --no-warn-ignored",
"prettier --write"
]
},
"private": true
}