-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.75 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
{
"name": "pokedex_2022",
"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 . --ext .js,.jsx,.ts,.tsx",
"bundle-ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"bundle-android": "react-native bundle --entry-file index.js --platform android --dev false --bundle-output android/main.jsbundle --assets-dest android"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.16.1",
"@react-native-masked-view/masked-view": "0.2.6",
"@react-navigation/bottom-tabs": "6.2.0",
"@react-navigation/material-top-tabs": "6.1.1",
"@react-navigation/native": "6.0.8",
"@react-navigation/stack": "6.1.1",
"@reduxjs/toolkit": "1.7.2",
"@types/react-native-snap-carousel": "3.8.5",
"axios": "0.26.0",
"metro-config": "0.67.0",
"react": "17.0.2",
"react-native": "0.67.2",
"react-native-eject": "0.1.2",
"react-native-gesture-handler": "2.2.0",
"react-native-image-colors": "1.5.0",
"react-native-linear-gradient": "2.5.6",
"react-native-pager-view": "5.4.9",
"react-native-portalize": "1.0.7",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "3.13.0",
"react-native-skeleton-placeholder": "5.0.0",
"react-native-snap-carousel": "3.9.1",
"react-native-sticky-parallax-header": "0.4.1",
"react-native-svg": "12.1.1",
"react-native-svg-transformer": "1.0.0",
"react-native-tab-view": "3.1.1",
"react-native-toast-message": "2.1.1",
"react-query": "3.34.16",
"react-redux": "7.2.5",
"redux": "4.1.1",
"redux-persist": "6.0.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/runtime": "7.12.5",
"@react-native-community/cli": "7.0.3",
"@react-native-community/eslint-config": "2.0.0",
"@types/jest": "26.0.23",
"@types/react-native": "0.66.15",
"@types/react-test-renderer": "17.0.1",
"@types/styled-components": "5.1.14",
"@types/styled-components-react-native": "5.1.1",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "7.14.0",
"eslint-plugin-import": "2.25.4",
"jest": "26.6.3",
"metro-react-native-babel-preset": "0.66.2",
"react-test-renderer": "17.0.2",
"typescript": "4.4.4"
},
"resolutions": {
"@types/react": "17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}