forked from sap-labs-france/ev-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
177 lines (177 loc) · 7.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
{
"name": "eMobility",
"version": "1.2.4",
"repository": {
"type": "git",
"url": "https://github.com/LucasBrazi06/ev-mobile.git"
},
"author": "SAP E-Mobility Labs France <e-mobility@sap.com>",
"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 deintegrate",
"test": "jest --passWithNoTests && npm run lint",
"precommit": "npm test",
"lint": "tslint '{src,__tests__,types}/**/*.ts{,x}' *.ts{,x}",
"lint:fix": "tslint --fix '{src,__tests__,types}/**/*.ts{,x}' *.ts{,x}",
"tsc": "tsc",
"tsc-stats": "tsc --diagnostics --listFiles",
"clean-install": "rimraf package-lock.json && rimraf node_modules && npm cache clear --force && npm install",
"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}"
},
"jest": {
"preset": "react-native"
},
"importSort": {
".js, .jsx, .es6, .es, .mjs": {
"parser": "babylon",
"style": "module",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/toolbar-android": "0.1.0-rc.2",
"@react-navigation/drawer": "^5.11.3",
"@react-navigation/material-bottom-tabs": "^5.3.9",
"@react-navigation/native": "^5.8.9",
"@react-navigation/stack": "^5.12.6",
"axios": "^0.21.0",
"base-64": "^1.0.0",
"buffer": "^6.0.3",
"color": "^3.1.3",
"deepmerge": "^4.2.2",
"http-status-codes": "^2.1.4",
"i18n-js": "^3.8.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"native-base": "^2.13.14",
"react": "16.13.1",
"react-native": "0.63.3",
"react-native-actionsheet": "^2.4.2",
"react-native-animatable": "^1.3.3",
"react-native-appearance": "^0.3.4",
"react-native-calendars": "^1.403.0",
"react-native-camera": "^3.40.0",
"react-native-carousel-view": "^0.5.1",
"react-native-charts-wrapper": "^0.5.7",
"react-native-deep-linking": "^2.2.0",
"react-native-device-info": "^7.1.0",
"react-native-elements": "^2.3.2",
"react-native-firebase": "^5.6.0",
"react-native-gesture-handler": "^1.8.0",
"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-link": "^2.7.19",
"react-native-maps": "0.27.1",
"react-native-modal": "^11.5.6",
"react-native-modalbox": "^2.0.2",
"react-native-modalize": "^2.0.6",
"react-native-orientation-locker": "^1.2.0",
"react-native-paper": "^3.12.0",
"react-native-permissions": "^2.2.2",
"react-native-qrcode-scanner": "^1.4.1",
"react-native-reanimated": "^1.13.2",
"react-native-responsive-stylesheet": "^1.1.0",
"react-native-root-toast": "^3.2.1",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.15.0",
"react-native-sensitive-info": "^5.5.8",
"react-native-size-matters": "^0.3.1",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-swipe-list-view": "^3.2.5",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^10.10.2",
"rn-secure-storage": "^2.0.6",
"tslib": "^2.0.3",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.5",
"@types/base-64": "^0.1.3",
"@types/color": "^3.0.1",
"@types/i18n-js": "^3.0.3",
"@types/jest": "^25.1.5",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.9",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-native": "^0.63.35",
"@types/react-native-actionsheet": "^2.4.2",
"@types/react-native-calendars": "^1.20.12",
"@types/react-native-charts-wrapper": "^0.5.1",
"@types/react-native-htmlview": "^0.12.2",
"@types/react-native-modalbox": "^1.4.8",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-test-renderer": "^16.9.3",
"babel-jest": "^25.1.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"cross-env": "^7.0.2",
"flow-bin": "^0.122.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^25.1.0",
"jetifier": "^1.6.6",
"metro": "^0.59.0",
"metro-config": "^0.59.0",
"metro-react-native-babel-preset": "^0.59.0",
"npm-check": "^5.9.2",
"patch-package": "^6.2.2",
"prettier": "^2.1.2",
"react-native-clean-project": "^3.4.0",
"react-native-debugger-open": "^0.3.25",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.13.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.5"
}
}