-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 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
{
"name": "react-native-training",
"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 --quiet --ext=js,jsx,ts,tsx ./src",
"prepare": "husky install",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@react-navigation/native": "~6.1.3",
"@react-navigation/native-stack": "~6.9.9",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"awilix": "~8.0.0",
"babel-plugin-module-resolver": "~5.0.0",
"expo": "~47.0.12",
"expo-localization": "~14.0.0",
"expo-status-bar": "~1.4.2",
"i18next": "~22.4.9",
"react": "18.1.0",
"react-i18next": "~12.1.5",
"react-native": "0.70.5",
"react-native-picker-select": "~8.0.4",
"react-native-safe-area-context": "~4.4.1",
"react-native-screens": "~3.18.0",
"react-query": "~3.39.3",
"typescript": "~4.9.5"
},
"devDependencies": {
"@babel/core": "~7.12.9",
"@react-native-community/eslint-config": "~3.0.3",
"@testing-library/jest-native": "~5.4.1",
"@testing-library/react-native": "~11.5.0",
"@types/jest": "~29.4.0",
"@typescript-eslint/eslint-plugin": "~5.51.0",
"@typescript-eslint/parser": "~5.51.0",
"eslint": "~8.33.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "~27.2.1",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-react": "~7.30.1",
"eslint-plugin-testing-library": "~5.7.0",
"eslint-plugin-unused-imports": "~2.0.0",
"husky": "~8.0.1",
"jest": "~29.4.2",
"jest-expo": "~47.0.1",
"jest-fetch-mock": "~3.0.3",
"jest-mock-extended": "~3.0.1",
"lint-staged": "~13.0.3",
"prettier": "~2.8.4"
},
"private": true
}