-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.56 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
{
"name": "@laffed/expo-redux-template",
"description": "TS-RTK, Expo-47 Template",
"version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/laffed/expo-redux-template.git"
},
"keywords": [
"react native",
"template",
"redux",
"redux tool kit",
"expo",
"react navigation 6"
],
"author": "laffed",
"license": "ISC",
"homepage": "https://github.com/laffed/expo-redux-template",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"_clean": "rm -rf node_modules && rm -rf /tmp/metro-* && yarn cache clean",
"newclear": "watchman watch-del-all && yarn _clean && yarn install",
"test": "jest --watchAll --coverage",
"_test": "jest --runInBand --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint --fix . --ext .ts --ext .tsx",
"tsc": "tsc",
"pre-document": "tsc --out ./scripts/routes.js ./src/navigation/routes.ts",
"postinstall": "patch-package",
"validate": "npm-run-all tsc lint _test",
"_validate": "npm-run-all tsc lint _test"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@hookform/resolvers": "^3.3.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/devtools": "^6.0.19",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@reduxjs/toolkit": "^1.9.5",
"apisauce": "^2.1.5",
"axios": "^0.26.0",
"expo": "^49.0.0",
"expo-asset": "~8.10.1",
"expo-constants": "~14.4.2",
"expo-font": "~11.4.0",
"expo-linking": "~5.0.2",
"expo-localization": "~14.3.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-web-browser": "~12.3.2",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-native": "0.72.4",
"react-native-dotenv": "^3.3.1",
"react-native-paper": "^5.10.3",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-toast-message": "^2.1.5",
"react-native-web": "~0.19.6",
"react-query": "^3.39.3",
"react-redux": "^7.2.6",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-native": "^4.0.5",
"@testing-library/react-native": "^12.2.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/luxon": "^2.3.2",
"@types/react": "17.0.39",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.47.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jest-expo": "^49.0.0",
"npm-run-all": "^4.1.5",
"react-devtools-core": "^4.28.0",
"react-test-renderer": "17.0.1",
"redux-devtools-extension": "^2.13.9",
"typescript": "^5.1.3"
},
"resolutions": {
"@types/react": "17.0.39"
}
}