-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 3.27 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
{
"name": "BuyIt",
"version": "0.0.1",
"private": true,
"scripts": {
"android:dev": "ENVFILE=.env.dev react-native run-android --variant=developmentDebug",
"ios": "react-native run-ios",
"start": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"presonar:scanner": "yarn test",
"sonar:scanner": "npx sonar-scanner -Dsonar.projectVersion=$(git rev-parse --abbrev-ref HEAD)"
},
"dependencies": {
"@react-native-community/async-storage": "^1.10.1",
"@react-native-community/datetimepicker": "^3.0.3",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/analytics": "^8.0.1",
"@react-native-firebase/app": "9.0.0",
"@react-native-firebase/auth": "^9.3.5",
"@react-native-firebase/crashlytics": "^8.5.2",
"@react-native-firebase/firestore": "^7.7.0",
"@react-navigation/drawer": "^5.8.2",
"@react-navigation/native": "^5.3.0",
"@react-navigation/stack": "^5.3.4",
"date-fns": "^2.16.1",
"i18n-js": "^3.8.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-bootsplash": "^2.2.4",
"react-native-camera": "^3.41.0",
"react-native-config": "^1.2.1",
"react-native-gesture-handler": "^1.6.1",
"react-native-iap": "^5.1.3",
"react-native-localize": "^2.0.1",
"react-native-paper": "^4.2.0",
"react-native-push-notification": "^8.1.0",
"react-native-reanimated": "^1.8.0",
"react-native-restart": "^0.0.20",
"react-native-safe-area-context": "^1.0.0",
"react-native-screens": "^2.9.0",
"react-native-svg": "^12.1.0",
"react-native-uuid": "^1.4.9",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "^5.1.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@redux-saga/testing-utils": "^1.1.3",
"@testing-library/react-hooks": "^3.2.1",
"@types/i18n-js": "^3.8.0",
"@types/jest": "^24.0.24",
"@types/react-native": "^0.62.0",
"@types/react-native-push-notification": "^5.0.5",
"@types/react-native-uuid": "^1.4.0",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-redux": "^7.1.8",
"@types/react-test-renderer": "16.9.2",
"@types/redux": "^3.6.0",
"@types/redux-persist": "^4.3.1",
"@types/redux-saga": "^0.10.5",
"@types/styled-components": "^5.1.0",
"@types/yup": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.5.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.4",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.13.1",
"redux-devtools-extension": "^2.13.8",
"sonarqube-scanner": "^2.6.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn tsc && yarn test"
}
}
}