-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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
{
"name": "msuapp",
"version": "2.2.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"postversion": "react-native-version -r",
"release:android": "cd android && ./gradlew bundleRelease && echo Built to android/app/build/outputs/bundle/release/app.aab",
"images:icon": "react-native set-icon --path assets/icon.png",
"images:splash": "react-native set-splash --path assets/splash.png --background '#1c2469'",
"images": "npm run images:icon && npm run images:splash"
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/masked-view": "^0.1.9",
"@react-native-firebase/analytics": "^10.6.4",
"@react-native-firebase/app": "^10.6.4",
"@react-native-firebase/messaging": "^10.6.4",
"@react-navigation/bottom-tabs": "^5.2.7",
"@react-navigation/native": "^5.1.6",
"@react-navigation/stack": "^5.2.11",
"hoist-non-react-statics": "^3.3.2",
"moment": "^2.24.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-calendars": "~1.217.0",
"react-native-config": "^0.12.0",
"react-native-elements": "^1.2.7",
"react-native-file-viewer": "^2.0.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-markdown-renderer": "^3.2.8",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.6.4",
"react-native-screens": "^2.5.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "6.6.0",
"rn-fetch-blob": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@bam.tech/react-native-make": "^3.0.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/node": "^13.13.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.60.31",
"@types/react-native-calendars": "^1.20.7",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.4",
"react-native-typescript-transformer": "^1.2.13",
"react-native-version": "^3.2.0",
"react-test-renderer": "16.9.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native"
},
"prettier": {
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "all",
"endOfLine": "lf"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community"
],
"rules": {
"quotes": [
"warn",
"double"
],
"prettier/prettier": "off",
"curly": "off"
}
}
}