-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "pokemonapp",
"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 .",
"lint-fix": "eslint . --fix",
"prettier": "prettier --write 'src/**/*.js'",
"linter": "eslint ./src/**/*.js"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.6",
"@react-native-firebase/analytics": "^14.11.0",
"@react-native-firebase/app": "^14.11.0",
"@react-native-firebase/auth": "^14.11.0",
"@react-native-firebase/crashlytics": "^14.11.0",
"@react-native-firebase/database": "^14.11.0",
"@react-native-firebase/messaging": "^14.11.0",
"@react-native-google-signin/google-signin": "^7.2.2",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@types/react": "^18.0.10",
"@types/react-native": "^0.67.7",
"axios": "^0.27.2",
"formik": "^2.2.9",
"lottie-react-native": "^5.1.3",
"metro-config": "^0.71.0",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-animatable": "^1.3.3",
"react-native-code-push": "^7.0.4",
"react-native-flash-message": "^0.2.1",
"react-native-image-picker": "^4.8.3",
"react-native-paper": "^4.12.1",
"react-native-push-notification": "^8.1.1",
"react-native-safe-area-context": "^4.2.5",
"react-native-screens": "^3.13.1",
"react-native-svg": "^12.3.0",
"react-native-vector-icons": "^9.1.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"babel-jest": "^26.6.3",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.67.0",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}