-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.21 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
{
"name": "MvpMovies",
"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 .",
"ios:clean:d-data": "rm -rf ~/Library/Developer/Xcode/DerivedData",
"ios:clean": "yarn ios:clean:d-data && yarn cache clean"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.7",
"@react-navigation/bottom-tabs": "^6.3.2",
"@react-navigation/native": "^6.0.11",
"@react-navigation/stack": "^6.2.2",
"@tanstack/react-query": "^4.0.5",
"@testing-library/react-native": "^11.0.0",
"@types/styled-components-react-native": "^5.1.1",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.5.1",
"react": "18.0.0",
"react-dom": "17.0.2",
"react-native": "0.69.2",
"react-native-cli": "^2.0.1",
"react-native-dotenv": "^3.3.1",
"react-native-gesture-handler": "^2.5.0",
"react-native-ratings": "^8.1.0",
"react-native-reanimated": "^2.9.1",
"react-native-safe-area-context": "^4.3.1",
"react-native-svg": "^12.4.0",
"react-native-web": "0.17.7",
"styled-components": "^5.3.5",
"use-debounce": "^8.0.2",
"zustand": "^4.0.0-rc.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-expo": "^9.1.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.71.3",
"react-test-renderer": "18.0.0"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.tsx$": "babel-jest"
},
"setupFiles": [
"./src/__mocks__/setup.js",
"./src/__mocks__/async-storage.js"
],
"moduleNameMapper": {
"\\.(png|jpg|ico|jpeg|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/ImageMock.js"
},
"transformIgnorePatterns": [
"node_modules/(?!@react-native|react-native)",
"node_modules/?!(react-navigation)"
]
}
}