forked from sap-labs-france/ev-mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
218 lines (218 loc) · 9.59 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
208
209
210
211
212
213
214
215
216
217
218
{
"name": "eMobility",
"version": "2.0.19",
"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",
"start": "react-native start",
"start:clean": "npm start -- --reset-cache",
"start:debug": "cross-env REACT_DEBUGGER=\"rndebugger-open --open --port 8081\" npm start",
"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:jetify": "npx jetify",
"list-ios": "xcrun simctl list devices",
"ios": "cross-env TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling react-native run-ios",
"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",
"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",
"clean-install": "rimraf package-lock.json && rimraf node_modules && npm cache clear --force && npm install --force",
"ios:bundle": "react-native bundle --platform='ios' --dev=false --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --assets-dest='./ios'",
"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",
"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",
"clean:android": "cd android && ./gradlew clean && cd ..",
"clean:ios": "cd ios && xcodebuild clean && rm -rf ~/Library/Developer/Xcode/DerivedData && rm -rf Pods/ && pod install && cd ..",
"clean:project": "npm run clean:android && npm run clean:ios"
},
"importSort": {
".js, .jsx, .es6, .es, .mjs": {
"parser": "babylon",
"style": "module",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
},
"dependencies": {
"@formatjs/intl-datetimeformat": "^4.2.4",
"@formatjs/intl-displaynames": "^5.2.4",
"@formatjs/intl-getcanonicallocales": "^1.7.3",
"@formatjs/intl-listformat": "^6.3.1",
"@formatjs/intl-locale": "^2.4.38",
"@formatjs/intl-numberformat": "^7.2.1",
"@formatjs/intl-pluralrules": "^4.1.1",
"@formatjs/intl-relativetimeformat": "^9.2.1",
"@react-native-community/datetimepicker": "^3.5.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/picker": "^1.8.1",
"@react-native-community/toolbar-android": "0.2.1",
"@react-navigation/drawer": "^6.1.8",
"@react-navigation/material-bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"@stripe/stripe-react-native": "^0.2.3",
"axios": "^0.22.0",
"base-64": "^1.0.0",
"buffer": "^6.0.3",
"color": "^3.2.1",
"deepmerge": "^4.2.2",
"http-status-codes": "^2.1.4",
"i18n-js": "^3.8.0",
"intl": "^1.2.5",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"native-base": "^2.15.2",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-actionsheet": "^2.4.2",
"react-native-animatable": "^1.3.3",
"react-native-appearance": "^0.3.4",
"react-native-blob-util": "^0.13.16",
"react-native-calendars": "^1.1262.0",
"react-native-camera": "^3.43.9",
"react-native-carousel-view": "^0.5.1",
"react-native-charts-wrapper": "^0.5.7",
"react-native-check-version": "^1.0.9",
"react-native-cluster-map": "^1.0.9",
"react-native-deep-linking": "^2.2.0",
"react-native-device-info": "^7.4.0",
"react-native-elements": "^2.3.2",
"react-native-firebase": "^5.6.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-google-maps-directions": "^2.1.1",
"react-native-htmlview": "^0.16.0",
"react-native-localize": "^1.4.3",
"react-native-location": "^2.5.0",
"react-native-map-clustering": "^3.4.2",
"react-native-map-link": "^2.8.0",
"react-native-maps": "^0.29.3",
"react-native-modal": "^11.10.0",
"react-native-modal-datetime-picker": "^9.2.3",
"react-native-modalbox": "^2.0.2",
"react-native-modalize": "^2.0.8",
"react-native-orientation-locker": "^1.3.1",
"react-native-paper": "^3.12.0",
"react-native-permissions": "^2.2.2",
"react-native-qrcode-scanner": "^1.6.0",
"react-native-reanimated": "^2.2.3",
"react-native-responsive-stylesheet": "^1.1.0",
"react-native-root-siblings": "^4.1.1",
"react-native-root-toast": "^3.2.1",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.0.0",
"react-native-select-dropdown": "^1.2.0",
"react-native-sensitive-info": "^5.5.8",
"react-native-size-matters": "^0.4.0",
"react-native-splash-screen": "^3.2.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^12.1.1",
"react-native-swipe-list-view": "^3.2.9",
"react-native-tab-view": "^3.1.1",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^11.13.0",
"rn-secure-storage": "^2.0.7",
"safe-url-assembler": "^1.3.5",
"tslib": "^2.2.0",
"url": "^0.11.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/base-64": "^1.0.0",
"@types/color": "^3.0.1",
"@types/i18n-js": "^3.8.2",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.170",
"@types/node": "^14.17.1",
"@types/react": "^17.0.29",
"@types/react-dom": "^17.0.9",
"@types/react-native": "^0.65.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-htmlview": "^0.12.2",
"@types/react-native-modalbox": "^1.4.9",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-jest": "^26.6.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"cross-env": "^7.0.3",
"deep-object-diff": "^1.1.0",
"eslint": "^7.32.0",
"eslint-define-config": "^1.0.9",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.26.0",
"flow-bin": "^0.161.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.64.0",
"metro-config": "^0.64.0",
"metro-react-native-babel-preset": "^0.64.0",
"npm-check": "^5.9.2",
"patch-package": "^6.4.7",
"prettier": "^2.3.0",
"react-native-clean-project": "^3.6.7",
"react-native-debugger-open": "^0.3.25",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.4"
},
"jest-junit": {
"outputDirectory": "./test-results"
}
}