-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.16 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.16 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
{
"name": "CSseuk",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"postinstall": "patch-package",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"lint-staged": "lint-staged"
},
"dependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.14.0",
"@expo/metro-runtime": "~5.0.5",
"@expo/vector-icons": "^14.1.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/datetimepicker": "8.4.1",
"@react-native-community/slider": "4.5.6",
"@react-navigation/bottom-tabs": "^7.4.2",
"@react-navigation/native": "^7.1.14",
"@react-navigation/native-stack": "^7.3.21",
"@tanstack/react-query": "^5.83.0",
"axios": "^1.10.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"expo": "~53.0.23",
"expo-app-loading": "2.1.1",
"expo-auth-session": "~6.2.1",
"expo-font": "~13.3.2",
"expo-linear-gradient": "~14.1.5",
"expo-local-authentication": "~16.0.5",
"expo-secure-store": "~14.2.4",
"expo-status-bar": "~2.2.3",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"metro": "^0.82.0",
"metro-cache": "^0.83.1",
"metro-config": "^0.83.1",
"moti": "^0.30.0",
"prettier": "^3.8.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-gesture-handler": "~2.24.0",
"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-toast-message": "^2.3.3",
"react-native-web": "^0.20.0",
"uuid": "^11.1.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@eslint/js": "^9.39.2",
"@storybook/addon-actions": "6.5.7",
"@storybook/addon-ondevice-actions": "6.5.7",
"@storybook/addon-ondevice-controls": "6.5.7",
"@storybook/react-native": "6.5.7",
"@types/lodash": "^4",
"@types/react": "~19.0.10",
"@types/react-dom": "^19",
"@types/react-native-web": "^0",
"babel-plugin-module-resolver": "^5.0.2",
"chromatic": "^13.1.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"patch-package": "^8.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"private": true,
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"resolutions": {
"metro": "0.82.5",
"metro-cache": "0.82.5",
"metro-config": "0.82.5",
"metro-core": "0.82.5",
"metro-file-map": "0.82.5",
"metro-resolver": "0.82.5",
"metro-runtime": "0.82.5",
"metro-source-map": "0.82.5",
"metro-transform-worker": "0.82.5"
}
}