-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.68 KB
/
package.json
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "AwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@gorhom/portal": "^1.0.14",
"@hookform/resolvers": "^3.3.1",
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-native-community/hooks": "^3.0.0",
"@react-native-firebase/app": "14.12.0",
"@react-native-firebase/firestore": "14.12.0",
"@react-native-firebase/messaging": "14.12.0",
"@react-native-masked-view/masked-view": "0.2.7",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@react-navigation/stack": "6.2.2",
"@reduxjs/toolkit": "1.8.4",
"@rneui/base": "^4.0.0-rc.8",
"@rneui/themed": "^4.0.0-rc.8",
"add": "^2.0.6",
"axios": "^0.27.2",
"i18next": "^23.5.1",
"moment": "^2.29.4",
"react": "18.1.0",
"react-i18next": "^13.2.2",
"react-native": "0.70.9",
"react-native-animatable": "^1.3.3",
"react-native-device-info": "^10.11.0",
"react-native-fast-image": "^8.6.3",
"react-native-flipper": "0.159.0",
"react-native-indicators": "^0.17.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-localize": "2.2.3",
"react-native-permissions": "^3.9.2",
"react-native-portalize": "^1.0.7",
"react-native-safe-area-context": "^4.6.3",
"react-native-screens": "^3.25.0",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "13.0.0",
"react-native-vector-icons": "^9.2.0",
"react-native-version-number": "^0.3.6",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"redux-flipper": "^2.0.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.3",
"yarn": "^1.22.19",
"yup": "^1.3.2"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/preset-env": "7.18.2",
"@babel/runtime": "7.18.3",
"@forward-software/react-native-toolbox": "^3.0.0",
"@react-native-community/eslint-config": "3.0.3",
"@react-native-community/eslint-plugin": "1.2.0",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/jest": "28.1.4",
"@types/node": "18.0.3",
"@types/react": "^18.2.24",
"@types/react-native": "^0.72.3",
"@types/react-native-indicators": "^0.16.2",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-redux": "^7.1.23",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babel-jest": "28.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.3",
"madge": "^5.0.1",
"metro-react-native-babel-preset": "0.71.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"react-native-debugger-open": "^0.3.25",
"react-test-renderer": "18.2.0",
"remote-redux-devtools": "^0.5.16",
"shx": "^0.3.4",
"ts-jest": "28.0.7",
"typescript": "^5.2.2"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"npm run prettier-format:staged",
"npm run prettier-check:staged"
]
},
"madge": {
"tsConfig": "./tsconfig.json",
"fileExtensions": "ts",
"excludeRegExp": [
".*\\.test\\.ts$",
".*\\.test\\.tsx$"
],
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}