forked from CS428-CT/ClassTranscribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"dependencies": {
"@expo/vector-icons": "^12.0.4",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/picker": "^1.8.1",
"@react-native-picker/picker": "1.9.2",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"babel-eslint": "^10.1.0",
"better-docs": "^2.3.2",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.9",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"expo": "^40.0.1",
"expo-auth-session": "^3.2.0",
"expo-av": "~8.7.0",
"expo-file-system": "~9.3.0",
"expo-random": "~10.0.0",
"expo-video-thumbnails": "~4.4.0",
"jest-expo": "^40.0.2",
"jsdoc": "^3.6.6",
"jwt-decode": "2.2.0",
"omit-deep-lodash": "^1.1.5",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-auth0": "^2.8.0",
"react-native-dotenv": "^2.5.3",
"react-native-elements": "^3.3.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-navigation": "^7.11.2",
"react-native-paper": "^4.7.2",
"react-native-picker-select": "8.0.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-unimodules": "^0.13.0",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "^0.15.0",
"lodash": "^4.17.21",
"react-native-webview": "^11.3.2",
"react-test-renderer": "^17.0.1",
"rn-fetch-blob": "^0.12.0",
"yuidocjs": "^0.10.2"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"regenerator-runtime": "^0.13.7"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|@react-native-community|@react-native-picker|expo-av|@react-native-community|@unimodules|unimodules-permissions-interface|expo-asset|expo-constants|)"
],
"testPathIgnorePatterns": [
"mock_response/*",
"shared.js"
],
"preset": "jest-expo",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"scripts": {
"start": "expo start",
"docs": "jsdoc -c jsdoc.conf.json",
"test": "jest --passWithNoTests --runInBand --detectOpenHandles --forceExit --bail",
"android": "expo start --android",
"build-android": "expo build:android",
"build-ios": "expo build:ios",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject --non-interactive --ject-method bare",
"lint": "eslint ."
},
"private": true
}