This repository was archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.52 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.52 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"format": "prettier -l --write .",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.21.0",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/material-top-tabs": "^6.0.2",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@types/react": "~18.2.14",
"dayjs": "^1.10.6",
"expo": "^50.0.0",
"expo-av": "~13.10.5",
"expo-linear-gradient": "~12.7.1",
"expo-linking": "~6.2.2",
"expo-status-bar": "~1.11.1",
"expo-store-review": "~6.8.3",
"expo-updates": "~0.24.10",
"lint-staged": "^10.5.4",
"react": "18.2.0",
"react-native": "0.73.4",
"react-native-pager-view": "6.2.3",
"react-native-render-html": "^6.1.0",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-segmented-control-tab": "^4.0.0",
"react-native-tab-view": "^3.1.1",
"react-redux": "^8.0.4",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^6.0.0",
"prettier": "^2.2.1"
},
"private": true,
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"react-hooks",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"react-hooks/rules-of-hooks": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-var-requires": "off"
},
"ignorePatterns": [
"node_modules",
"babel.config.js"
]
},
"lint-staged": {
"*.{md,json,yml,yaml}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}