forked from themeetinghouse/mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 4.33 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"scripts": {
"start:wsl": "REACT_NATIVE_PACKAGER_HOSTNAME=$(netsh.exe interface ip show address 'Ethernet' | grep 'IP Address' | sed -r 's/^.*IP Address:\\W*//') expo start --clear",
"start": "export SENTRY_ORG=the-meeting-house;VERSION=`sentry-cli releases propose-version`;echo export const version ={git:\\\"$VERSION\\\"}>version.js;expo start",
"android": "expo start:android",
"ios": "expo start:ios",
"web": "expo start:web",
"eject": "expo eject",
"test": "jest",
"buildExpo": "export SENTRY_ORG=the-meeting-house;VERSION=`sentry-cli releases propose-version`;sentry-cli releases new -p the-meeting-house-mobile $VERSION;sentry-cli releases set-commits --auto $VERSION;echo export const version ={git:\\\"$VERSION\\\"}>version.js;expo build:ios -t archive;expo build:android -t apk;sentry-cli releases finalize $VERSION;sentry-cli releases deploys $VERSION new -e prod;curl --header 'Content-Type: application/json' --request POST --data '{\"content\":\"Published a new version from commit: '$VERSION'\"}' $DISCORD_WEBHOOK_APP",
"submit": "eas build -p all --auto-submit",
"submitLocal": "eas build --platform ios --local;eas build --platform android --local"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/assets/",
"/src/Theme.style.ts"
]
},
"dependencies": {
"@aws-amplify/analytics": "^6.5.4",
"@aws-amplify/api": "^5.4.4",
"@aws-amplify/auth": "^5.6.4",
"@aws-amplify/core": "^5.8.4",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/netinfo": "9.3.10",
"@react-native-community/slider": "4.4.2",
"@react-native-picker/picker": "2.4.10",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"amazon-cognito-identity-js": "^6.3.5",
"aws-amplify": "5.3.10",
"axios": "^0.21.1",
"expo": "^49.0.8",
"expo-application": "~5.3.0",
"expo-av": "~13.4.1",
"expo-build-properties": "~0.8.3",
"expo-calendar": "~11.3.0",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-device": "~5.4.0",
"expo-file-system": "~15.4.4",
"expo-font": "~11.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-location": "~16.1.0",
"expo-notifications": "~0.20.1",
"expo-random": "~13.2.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"jest": "^29.2.1",
"jest-expo": "49.0.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.33",
"nanoid": "^3.1.12",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-gesture-handler": "~2.12.0",
"react-native-maps": "1.7.1",
"react-native-open-maps": "^0.3.5",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-sideswipe": "^1.5.0",
"react-native-swiper": "^1.6.0",
"react-native-web": "~0.19.6",
"react-native-web-webview": "^1.0.2",
"react-native-webview": "13.2.2",
"react-native-youtube-iframe": "^2.1.1",
"sentry-expo": "~7.0.0",
"shorthash2": "^1.0.3"
},
"devDependencies": {
"@testing-library/react-native": "^12.2.2",
"@types/jest": "^29.5.4",
"@types/nanoid": "^2.1.0",
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-preset-expo": "^9.3.0",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx}": "prettier --write"
},
"private": true
}