-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.35 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
{
"name": "zipbap",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:dev": "cd ios && pod install && cd .. && npx expo run:ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"type-check": "tsc --noEmit",
"fsd": "node __tools__/fsd-check/index.js src",
"fsd:watch": "node __tools__/fsd-check/index.js src --watch",
"expo:ios:production": "eas build -p ios --profile production",
"expo:ios:submit": "eas submit --platform ios --profile production",
"pre-ci-check": "tsc --noEmit && eslint . --ext .ts,.tsx,.js,.jsx && prettier --check . && node __tools__/fsd-check/index.js src"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,scss}": "prettier --write"
},
"dependencies": {
"@expo/metro-runtime": "~5.0.4",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native-seoul/kakao-login": "^5.4.2",
"@react-navigation/bottom-tabs": "^7.4.7",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.26",
"@tanstack/react-query": "^5.90.6",
"axios": "^1.11.0",
"clsx": "^2.1.1",
"expo": "~53.0.22",
"expo-apple-authentication": "~7.2.4",
"expo-dev-client": "~5.2.4",
"expo-image": "~2.4.1",
"expo-image-picker": "^16.1.4",
"expo-network": "~7.1.5",
"expo-status-bar": "~2.2.3",
"expo-video": "~2.2.2",
"lucide-react-native": "^0.552.0",
"nativewind": "^4.1.23",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-gesture-handler": "^2.29.0",
"react-native-keyboard-controller": "^1.19.5",
"react-native-linear-gradient": "^2.8.3",
"react-native-modal": "^14.0.0-rc.1",
"react-native-modalize": "^2.1.1",
"react-native-portalize": "^1.0.7",
"react-native-reanimated": "4.1.0",
"react-native-safe-area-context": "5.6.1",
"react-native-screens": "4.15.4",
"react-native-shadow-2": "7.1.2",
"react-native-skeleton-placeholder": "^5.2.4",
"react-native-svg": "15.11.2",
"react-native-web": "^0.20.0",
"react-native-webview": "^13.16.0",
"react-native-worklets": "0.5.0",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@eslint/js": "^9.34.0",
"@types/react": "~19.0.10",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.43.0",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"fast-glob": "^3.3.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"react-native-svg-transformer": "^1.5.1",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3"
},
"private": true
}