-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
130 lines (130 loc) · 4.5 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "puente-reactnative",
"version": "12.6.1",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"start-clear": "expo start --clear",
"reinstall": "rm package-lock.json && rm -rf node_modules/ && npm install",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"test-debug": "jest -o --watch --coverage=false",
"test-run": "jest --forceExit --detectOpenHandles && codecov",
"lint": "./node_modules/.bin/eslint '**/*.{js,jsx}' --quiet",
"lint-fix": "./node_modules/.bin/eslint '**/*.{js,jsx}' --fix",
"prettier": "prettier --write '**/*.{js,jsx}'",
"publish-prod": "eas build --platform all",
"upload": "eas submit -p ios --latest && eas submit -p android --latest",
"gh-prune": "git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done",
"release-patch": "npx standard-version --release-as patch",
"release-minor": "npx standard-version --release-as minor",
"release-major": "npx standard-version --release-as major",
"postinstall": "patch-package",
"post-version": "node scripts/update-version/versionNumber.js"
},
"jest": {
"preset": "jest-expo",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"moduleNameMapper": {
"^parse/react-native$": "parse/node"
}
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.342.0",
"@expo/config-plugins": "^7.2.5",
"@expo/metro-config": "^0.1.64",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/netinfo": "9.3.7",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-native-picker/picker": "2.4.8",
"@react-navigation/bottom-tabs": "5.11.11",
"@react-navigation/native": "5.9.4",
"@react-navigation/stack": "5.14.5",
"axios": "0.21.1",
"deprecated-react-native-prop-types": "^2.3.0",
"expo": "^48.0.0",
"expo-application": "~5.1.1",
"expo-asset": "~8.9.1",
"expo-camera": "~13.2.1",
"expo-constants": "~14.2.1",
"expo-font": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-location": "~15.1.1",
"expo-mail-composer": "~12.1.1",
"expo-network": "~5.2.1",
"expo-notifications": "~0.18.1",
"expo-splash-screen": "~0.18.2",
"expo-store-review": "~6.2.1",
"expo-updates": "~0.16.4",
"expo-web-browser": "~12.1.1",
"formik": "2.1.5",
"i18n-js": "3.7.1",
"lodash": "4.17.21",
"native-base": "2.15.2",
"parse": "2.19.0",
"patch-package": "^6.4.7",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-autocomplete-input": "4.2.0",
"react-native-emoji": "1.8.0",
"react-native-gesture-handler": "~2.9.0",
"react-native-get-random-values": "~1.9.0",
"react-native-localize": "1.3.3",
"react-native-maps": "1.3.2",
"react-native-pager-view": "6.1.2",
"react-native-paper": "3.11.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-uuid": "^2.0.1",
"yup": "0.29.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@faker-js/faker": "^7.5.0",
"babel-eslint": "10.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-expo": "^9.3.0",
"deep-merge": "1.0.0",
"env-cmd": "10.1.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest-expo": "^48.0.0",
"prettier": "^2.8.4",
"prompt": "1.1.0",
"react-native-svg-transformer": "0.14.3",
"standard-version": "9.2.0",
"standard-version-expo": "1.0.3"
},
"private": true,
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
}
}