-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.67 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
{
"name": "react_native_movie",
"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 .",
"lintFixAll": "npx eslint '**/*.{js,jsx,ts,tsx}' --fix",
"prettierFixAll": "npx prettier --write '**/*.{js,jsx,ts,tsx,json,md}'",
"fix:lintPrettier": "npm run prettierFixAll && npm run lintFixAll",
"install-package": "rm -rf node_modules && npm i --save && watchman watch-del-all "
},
"dependencies": {
"@react-native-community/netinfo": "11.4.1",
"@react-navigation/bottom-tabs": "7.2.0",
"@react-navigation/material-top-tabs": "7.1.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@reduxjs/toolkit": "2.5.0",
"@testing-library/react-native": "^13.0.0",
"i18next": "^24.2.1",
"react": "18.3.1",
"react-i18next": "^15.4.0",
"react-native": "0.76.6",
"react-native-gesture-handler": "2.21.2",
"react-native-localize": "^3.4.1",
"react-native-mmkv": "^3.2.0",
"react-native-pager-view": "6.6.1",
"react-native-paper": "5.13.0",
"react-native-reanimated": "^3.16.6",
"react-native-safe-area-context": "5.1.0",
"react-native-screens": "4.4.0",
"react-native-tab-view": "4.0.5",
"react-native-vector-icons": "10.2.0",
"react-navigation-shared-element": "^3.1.3",
"react-redux": "9.2.0",
"redux": "5.0.1",
"redux-logger": "3.0.6",
"zustand": "5.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native-community/cli": "16.0.0",
"@react-native-community/cli-platform-android": "16.0.0",
"@react-native-community/cli-platform-ios": "16.0.0",
"@react-native/babel-preset": "^0.76.5",
"@react-native/eslint-config": "0.76.5",
"@react-native/metro-config": "0.76.5",
"@react-native/typescript-config": "0.76.5",
"@types/i18next": "^13.0.0",
"@types/react": "^18.2.6",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.0.0",
"@types/redux-logger": "^3.0.13",
"babel-jest": "^29.6.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-native": "4.1.0",
"globals": "^15.12.0",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "0.77.0",
"prettier": "^3.3.3",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4",
"typescript-eslint": "^8.10.0"
},
"engines": {
"node": ">=18"
}
}