This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
{
"name": "Mova21",
"version": "11",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"serve": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build-android": "./build-android.sh",
"clean-android": "cd android && ./gradlew clean && cd ..",
"pod": "yarn install && cd ios && pod install && cd .."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^8.3.0",
"@react-navigation/bottom-tabs": "^5.7.2",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.7.1",
"@types/react-native-video": "^5.0.13",
"i18next": "^19.8.4",
"markdown-it-block-embed": "^0.0.3",
"markdown-it-container": "^3.0.0",
"moment": "^2.29.4",
"react": "17.0.2",
"react-i18next": "^11.7.3",
"react-native": "0.66.4",
"react-native-geolocation-service": "^5.3.0-beta.4",
"react-native-gesture-handler": "^1.6.1",
"react-native-markdown-display": "^7.0.0-alpha.2",
"react-native-music-control": "^1.4.1",
"react-native-safe-area-context": "^3.1.1",
"react-native-screens": "^2.9.0",
"react-native-splash-screen": "^3.2.0",
"react-native-status-bar-height": "^2.5.0",
"react-native-swift": "^1.2.3",
"react-native-toast-message": "^2.1.5",
"react-native-vector-icons": "^7.0.0",
"react-native-video": "^5.2.0",
"react-native-webview": "^11.14.2",
"react-native-youtube-iframe": "^2.2.2",
"rxjs": "^7.5.2",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/react-native": "^0.66.12",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^5.1.24",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.0.4",
"react-test-renderer": "17.0.2",
"typescript": "^4.1.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}