-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.4 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.4 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
{
"name": "pro_visit",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx ./src -f stylish",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx ./src --fix",
"prepare": "husky install",
"types": "tsc --noemit"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/netinfo": "9.3.10",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^3.0.0",
"expo": "^49.0.0",
"expo-font": "~11.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-localization": "^14.3.0",
"expo-splash-screen": "^0.20.5",
"expo-status-bar": "^1.6.0",
"formik": "^2.4.2",
"husky-init": "^8.0.0",
"i18n-js": "4.2.0",
"phosphor-react-native": "^1.1.2",
"prettier": "^3.0.2",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-animatable": "^1.3.3",
"react-native-flash-message": "^0.4.2",
"react-native-modal": "^13.0.1",
"react-native-otp-textinput": "^1.1.1",
"react-native-responsive-dimensions": "^3.1.1",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-shimmer-placeholder": "^2.0.9",
"react-native-svg": "13.9.0",
"react-native-userpic": "^2.0.1",
"react-query": "^3.39.3",
"react-redux": "^8.1.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/js-md5": "^0.7.0",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.3.0",
"typescript": "^5.1.3"
},
"private": true,
"lint-staged": {
"*.{jsx,ts,tsx}": [
"yarn prettify",
"git add .",
"yarn lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}