-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
90 lines (90 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
81
82
83
84
85
86
87
88
89
90
{
"name": "opencovid19-cough-check",
"version": "0.1.1",
"description": "Development of AI audio app to compare the cough of a Coronavirus (COVID-19) infected individual with the cough of an uninfected individual.",
"keywords": [
"COVID-19",
"Coronavirus",
"Cough",
"CoughCheck",
"SARS-CoV-2",
"AI COVID-19",
"COVID19",
"AI",
"Machine Learning"
],
"homepage": "https://app.jogl.io/project/132",
"repository": {
"url": "https://github.com/OpenCOVID19CoughCheck/CoughCheckApp"
},
"license": "MIT",
"contributors": [
"Hernán Morales Durand (http://www.github.com/hernanmd/)",
"Matt Black <[email protected]> (https://mattblack.io/)"
],
"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",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@react-native-community/masked-view": "0.1.6",
"@react-navigation/native": "^5.1.3",
"@react-navigation/stack": "^5.2.6",
"@use-expo/font": "^1.0.1",
"axios": "^0.21.1",
"expo": "^37.0.0",
"expo-auth-session": "~1.0.0",
"expo-av": "~8.1.0",
"expo-font": "~8.1.0",
"expo-localization": "~8.1.0",
"formik": "^2.1.4",
"i18n-js": "^3.5.1",
"native-base": "2.13.8",
"prop-types": "^15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",
"react-native-elements": "^1.2.7",
"react-native-gesture-handler": "~1.6.0",
"react-native-paper": "^3.6.0",
"react-native-progress": "^4.1.2",
"react-native-reanimated": "~1.7.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "~2.2.0",
"react-native-svg": "11.0.1",
"react-native-web": "^0.11.7",
"release-it": "^13.5.0",
"styled-components": "^5.0.1",
"yup": "^0.28.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/i18n-js": "^3.0.1",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/yup": "^0.26.33",
"all-contributors-cli": "^6.14.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "^8.1.0",
"husky": "^4.2.3",
"prettier": "2.0.2",
"pretty-quick": "^2.0.1",
"react-devtools": "^3",
"typescript": "^3.8.3",
"weallcontribute": "^1.0.9",
"webpack-merge": "^4.2.2"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}