-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) Β· 3.03 KB
/
package.json
File metadata and controls
90 lines (90 loc) Β· 3.03 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
{
"name": "refood",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "husky install",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"start": "react-native start",
"test": "jest"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@mj-studio/react-native-naver-map": "^1.5.10",
"@notifee/react-native": "^9.1.8",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/geolocation": "^3.4.0",
"@react-native-firebase/app": "^23.0.0",
"@react-native-firebase/messaging": "^23.0.0",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native-seoul/kakao-login": "^5.4.1",
"@react-native-vector-icons/evil-icons": "^12.3.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@tanstack/react-query": "^5.84.1",
"@tosspayments/widget-sdk-react-native": "^1.4.0",
"axios": "^1.11.0",
"eslint-config-prettier": "^9.1.0",
"lottie-react-native": "^7.3.3",
"react": "18.2.0",
"react-native": "0.74.6",
"react-native-bootsplash": "^6.3.10",
"react-native-config": "^1.5.6",
"react-native-date-picker": "^5.0.13",
"react-native-encrypted-storage": "^4.0.3",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.21.2",
"react-native-gifted-charts": "^1.4.64",
"react-native-image-picker": "^8.2.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-permissions": "^5.4.2",
"react-native-reanimated": "^3.14.0",
"react-native-safe-area-context": "^5.0.0",
"react-native-screens": "^4.4.0",
"react-native-shadow-2": "^7.1.2",
"react-native-svg": "^15.12.1",
"react-native-toast-message": "^2.3.3",
"react-native-vector-icons": "^10.3.0",
"react-native-webview": "^13.15.0",
"tosspayments-react-native-webview": "^1.0.1",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.88",
"@react-native/eslint-config": "0.74.88",
"@react-native/metro-config": "0.74.88",
"@react-native/typescript-config": "0.74.88",
"@types/react": "^18.2.6",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.19.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jest": "^29.6.3",
"lint-staged": "^16.1.4",
"prettier": "2.8.8",
"react-native-svg-transformer": "^1.5.1",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}