This repository was archived by the owner on Mar 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.95 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
{
"name": "KukaNow",
"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 . --ext .js,.jsx"
},
"dependencies": {
"@eva-design/eva": "^2.1.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/app": "^14.4.0",
"@react-native-firebase/auth": "^14.4.0",
"@react-native-firebase/firestore": "^14.4.0",
"@react-native-firebase/storage": "^14.4.0",
"@react-native-google-signin/google-signin": "^7.1.0",
"@react-navigation/bottom-tabs": "^6.2.0",
"@react-navigation/native": "^6.0.8",
"@react-navigation/stack": "^6.1.1",
"@ui-kitten/components": "^5.1.0",
"@ui-kitten/eva-icons": "^5.1.0",
"date-fns": "^2.28.0",
"formik": "^2.2.6",
"react": "^17.0.2",
"react-native": "^0.67.3",
"react-native-fbsdk": "^3.0.0",
"react-native-gesture-handler": "^2.2.0",
"react-native-get-random-values": "^1.7.2",
"react-native-image-picker": "^4.7.3",
"react-native-progress": "^5.0.0",
"react-native-reanimated": "^2.4.1",
"react-native-safe-area-context": "^4.0.2",
"react-native-screens": "^3.13.0",
"react-native-svg": "^12.1.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-video": "^5.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/runtime": "^7.17.2",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@ui-kitten/metro-config": "^5.1.0",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"jest-svg-transformer": "^1.0.0",
"metro-react-native-babel-preset": "^0.69.0",
"prettier": "^2.5.1",
"react-test-renderer": "17.0.2"
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint --quiet --fix"
]
}
}