forked from ACN-Coding-Test/react-native-coding-test-level-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.77 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
{
"name": "pokedex",
"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",
"eject": "expo eject",
"test": "jest"
},
"jest": {
"preset": "react-native",
"automock": false,
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"verbose": true,
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-paper|@expo/*|@react-native-community|@react-navigation)"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"dependencies": {
"@react-native-community/datetimepicker": "^6.5.4",
"@react-navigation/native": "^6.0.13",
"@react-navigation/stack": "^6.3.4",
"@reduxjs/toolkit": "^1.9.0",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.6",
"add": "^2.0.6",
"date-fns": "^2.29.3",
"expo": "~45.0.0",
"expo-status-bar": "~1.3.0",
"fetch-mock": "^9.11.0",
"native-base": "^3.4.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-date-picker": "^4.2.6",
"react-native-gesture-handler": "~2.2.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "^4.12.5",
"react-native-reanimated": "^2.12.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-svg": "12.3.0",
"react-native-testing-library": "^6.0.0",
"react-native-web": "0.17.7",
"react-redux": "^8.0.5",
"react-test-renderer": "17.0.2",
"redux": "^4.2.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-native": "^5.1.2",
"@testing-library/react-native": "^11.4.0",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"redux-mock-store": "^1.5.4",
"ts-jest": "^29.0.3",
"typescript": "~4.3.5"
},
"private": true
}