-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.33 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
{
"name": "moviedbapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android second": "react-native run-android --port 8082",
"ios": "react-native run-ios",
"start": "react-native start",
"start second": "react-native start --port 8082",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"reboot android": "adb reboot",
"clean android": "cd android && ./gradlew clean",
"clean and install ios": "cd ios && pod cache clean --all && pod install",
"e2e:android:build": "detox build -c android.emu.release",
"e2e:android:test": "emulator @Pixel_API_31_AOSP -no-audio -no-boot-anim & sleep 3 && detox test -c android.emu.release --cleanup",
"e2e:android": "npm run e2e:android:build && npm run e2e:android:test",
"e2e:ios:build": "detox build -c ios.sim.debug",
"e2e:ios:test": "detox test -c ios.sim.debug",
"e2e:ios": "npm run e2e:ios:build && npm run e2e:ios:test"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.16.0",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@reduxjs/toolkit": "^1.7.2",
"@types/react": "^17",
"axios": "^0.25.0",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"re-reselect": "^4.0.0",
"react": "17.0.2",
"react-native": "0.67.2",
"react-native-config": "^1.4.5",
"react-native-flipper": "^0.140.0",
"react-native-safe-area-context": "^4.0.1",
"react-native-screens": "^3.12.0",
"react-native-svg": "^12.1.1",
"react-redux": "^7.2.6",
"redux-flipper": "^2.0.1",
"reselect": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^5.0.0",
"@testing-library/react-native": "^11.2.0",
"@types/detox": "^18.1.0",
"@types/jest": "^27.2.5",
"@types/lodash": "^4.14.190",
"@types/react-native": "^0.66.15",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^26.6.3",
"detox": "^19.12.5",
"dotenv": "^16.0.3",
"eslint": "^7.14.0",
"eslint-plugin-testing-library": "^5.7.2",
"jest": "^27.2.5",
"metro-react-native-babel-preset": "^0.66.2",
"msw": "^0.47.4",
"react-native-svg-transformer": "^1.0.0",
"react-native-url-polyfill": "^1.3.0",
"react-test-renderer": "17.0.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17",
"react-devtools-core": "4.24.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|react-native-flipper|react-native-safe-area-context|@react-navigation|@react-native(-community)?)/)"
],
"setupFiles": [
"<rootDir>/__mocks__/react-native-safe-area-context/setup.js",
"<rootDir>/__mocks__/react-navigation/setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleNameMapper": {
"\\.svg": "<rootDir>/__mocks__/react-native-svg-transformer/index.ts"
}
}
}