-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
207 lines (207 loc) · 9.24 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"name": "ev-mobile",
"version": "2.6.10",
"engines": {
"npm": ">=8.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/sap-labs-france/ev-mobile.git"
},
"author": "Serge FABIANO <sergefabiano@@free.fr>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"postinstall": "patch-package & npx jetify",
"start": "react-native start",
"start:debug": "cross-env REACT_DEBUGGER=\"rndebugger-open --open --port 8081\" npm start",
"start:clean": "npm start -- --reset-cache",
"projects:clean": "npm run android:clean && npm run ios:clean",
"install:clean": "rimraf package-lock.json && rimraf node_modules && npm cache clear --force && npm install --force",
"android": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-android",
"android:release": "react-native run-android --variant=release",
"android:bundleRelease": "npm run android:jetify && cd android && ./gradlew bundleRelease",
"android:bundleDebug": "npm run android:jetify && cd android && ./gradlew bundleDebug",
"android:assembleRelease": "npm run android:jetify && cd android && ./gradlew assembleRelease",
"android:assembleDebug": "npm run android:jetify && cd android && ./gradlew assembleDebug",
"android:bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
"android:clean": "cd android && ./gradlew clean && cd ..",
"android:jetify": "npx jetify",
"ios": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios",
"ios:list-devices": "xcrun simctl list devices",
"ios-iphone-sap": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios --device='SAP iPhone'",
"ios-iphone-xs-max": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios --simulator='iPhone Xs Max'",
"ios-iphone-6s-plus": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios --simulator='iPhone 6s Plus'",
"ios-ipad-pro": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios --simulator='iPad Pro (12.9-inch) (2nd generation)'",
"ios:release": "react-native run-ios --configuration Release",
"ios:bundle": "react-native bundle --platform='ios' --dev=false --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --assets-dest='./ios'",
"ios:clean": "cd ios && xcodebuild clean && rm -rf ~/Library/Developer/Xcode/DerivedData && rm -rf Pods/ && pod install && cd ..",
"pod:install": "cd ios && pod install",
"pod:deintegrate": "cd ios && pod repo update && pod deintegrate",
"test": "jest -u --ci --testResultsProcessor='jest-junit' --reporters='default' --reporters='jest-junit'",
"precommit": "npm test",
"lint": "cross-env TIMING=1 eslint src __tests__ types App.tsx --ext .js,.ts,.tsx",
"lint:fix": "cross-env TIMING=1 eslint src __tests__ types App.tsx --fix --ext .js,.ts,.tsx",
"tsc": "tsc",
"tsc-stats": "tsc --diagnostics --listFiles",
"npm-check": "npm-check",
"react-native:upgrade": "react-native upgrade",
"react-native:link": "react-native link",
"react-native:unlink": "react-native unlink",
"react-native:uninstall": "react-native uninstall",
"react-native:log-ios": "react-native log-ios",
"react-native:log-android": "react-native log-android",
"react-native:clean-project-auto": "react-native clean-project-auto",
"build:prepare": "if [ ! -f android/app/google-services.json ]; then cp assets/google-services-template.json android/app/google-services.json; fi && if [ ! -f ios/GoogleService-Info.plist ]; then cp assets/GoogleService-Info-template.plist ios/GoogleService-Info.plist; fi",
"import-sort": "npx import-sort-cli --write '{src,__tests__,types}/**/*.ts{,x}' *.ts{,x}",
"check:i18n": "cross-env TS_NODE_FILES=true ts-node-dev --project tsconfig-i18n.json --files test/I18nChecker.ts",
"react-native:install": "npm install --force && npm clean-install && cd ios && pod install"
},
"importSort": {
".js, .jsx, .es6, .es, .mjs": {
"parser": "babylon",
"style": "module",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
},
"dependencies": {
"@formatjs/intl-datetimeformat": "^6.3.1",
"@formatjs/intl-displaynames": "^6.1.4",
"@formatjs/intl-getcanonicallocales": "^2.0.4",
"@formatjs/intl-listformat": "^7.1.3",
"@formatjs/intl-locale": "^3.0.7",
"@formatjs/intl-numberformat": "^8.2.0",
"@formatjs/intl-pluralrules": "^5.1.4",
"@formatjs/intl-relativetimeformat": "^11.1.4",
"@ptomasroos/react-native-multi-slider": "github:0hio-creator/react-native-multi-slider",
"@react-native-community/datetimepicker": "^6.7.0",
"@react-native-firebase/app": "^16.4.5",
"@react-native-firebase/messaging": "^16.4.5",
"@react-navigation/drawer": "^6.5.1",
"@react-navigation/material-bottom-tabs": "^6.2.5",
"@react-navigation/native": "^6.0.14",
"@react-navigation/stack": "^6.3.5",
"@stripe/stripe-react-native": "^0.21.0",
"@types/intl-unofficial-duration-unit-format": "^3.1.0",
"axios": "^0.22.0",
"base-64": "^1.0.0",
"buffer": "^6.0.3",
"color": "^4.2.3",
"deepmerge": "^4.2.2",
"deprecated-react-native-prop-types": "^2.3.0",
"http-status-codes": "^2.2.0",
"i18n-js": "^3.8.0",
"intl": "^1.2.5",
"intl-messageformat": "^10.2.1",
"intl-unofficial-duration-unit-format": "^3.1.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"native-base": "3.4.22",
"react": "^18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.8",
"react-native-animatable": "^1.3.3",
"react-native-blob-util": "^0.17.0",
"react-native-bootsplash": "^4.3.3",
"react-native-camera": "^3.43.9",
"react-native-charts-wrapper": "0.5.11",
"react-native-check-version": "^1.0.20",
"react-native-deep-linking": "^2.2.0",
"react-native-device-info": "^10.3.0",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "^2.8.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-localize": "2.2.4",
"react-native-location": "^2.5.0",
"react-native-map-clustering": "^3.4.2",
"react-native-map-link": "^2.10.2",
"react-native-maps": "^0.29.3",
"react-native-modal": "^13.0.1",
"react-native-modal-datetime-picker": "^14.0.0",
"react-native-orientation-locker": "1.5.0",
"react-native-paper": "^4.12.5",
"react-native-permissions": "^3.6.1",
"react-native-qrcode-scanner": "^1.6.0",
"react-native-reanimated": "~2.13.0",
"react-native-render-html": "^6.3.4",
"react-native-responsive-stylesheet": "^1.1.0",
"react-native-root-siblings": "^4.1.1",
"react-native-root-toast": "^3.3.1",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-select-dropdown": "^3.0.3",
"react-native-size-matters": "^0.4.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^13.6.0",
"react-native-vector-icons": "^9.2.0",
"react-native-webview": "^11.23.1",
"rn-secure-storage": "^2.0.8",
"tslib": "^2.4.1",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@react-native-community/eslint-config": "^3.2.0",
"@types/base-64": "^1.0.0",
"@types/color": "^3.0.3",
"@types/i18n-js": "^3.8.3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.189",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-native": "^0.70.6",
"@types/react-native-actionsheet": "^2.4.3",
"@types/react-native-calendars": "^1.1264.2",
"@types/react-native-charts-wrapper": "^0.5.1",
"@types/react-native-modalbox": "^1.4.9",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "^26.6.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-define-config": "^1.12.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.31.11",
"flow-bin": "^0.193.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^26.6.3",
"jest-junit": "^13.0.0",
"jetifier": "^2.0.0",
"metro": "^0.73.3",
"metro-config": "^0.73.3",
"metro-react-native-babel-preset": "^0.73.3",
"npm-check": "^6.0.1",
"patch-package": "^6.5.0",
"prettier": "^2.7.1",
"react-native-clean-project": "^4.0.1",
"react-native-debugger-open": "^0.3.25",
"react-native-svg-transformer": "1.0.0",
"react-test-renderer": "18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.9.3"
},
"jest-junit": {
"outputDirectory": "./test-results"
}
}