2020-08-28 19:35:51 +00:00
|
|
|
{
|
|
|
|
"scripts": {
|
2020-09-01 02:12:32 +00:00
|
|
|
"start": "react-native start",
|
|
|
|
"android": "react-native run-android",
|
|
|
|
"ios": "react-native run-ios",
|
2020-09-10 18:10:21 +00:00
|
|
|
"web": "expo start --web",
|
|
|
|
"debug-build": "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/ && cd android && ./gradlew assembleDebug && cd ..",
|
|
|
|
"release-build": "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/build/intermediates/res/merged/release/ && rm -rf android/app/src/main/res/drawable-* && rm -rf android/app/src/main/res/raw/* && cd android && ./gradlew assembleRelease && cd .."
|
2020-08-28 19:35:51 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-09-01 19:55:23 +00:00
|
|
|
"@react-native-community/async-storage": "^1.12.0",
|
|
|
|
"@react-native-community/netinfo": "^5.9.6",
|
2020-09-02 16:13:16 +00:00
|
|
|
"date-fns": "^2.16.1",
|
2020-09-10 18:10:21 +00:00
|
|
|
"expo": "~38.0.8",
|
2020-09-01 19:55:23 +00:00
|
|
|
"expo-barcode-scanner": "~8.2.1",
|
|
|
|
"expo-print": "~9.0.1",
|
2020-09-04 21:50:50 +00:00
|
|
|
"expo-screen-orientation": "~1.1.1",
|
2020-09-10 18:10:21 +00:00
|
|
|
"expo-splash-screen": "^0.5.0",
|
|
|
|
"expo-status-bar": "^1.0.2",
|
|
|
|
"expo-updates": "~0.2.10",
|
2020-09-02 21:09:49 +00:00
|
|
|
"firebase": "7.9.0",
|
2020-09-01 19:55:23 +00:00
|
|
|
"jsbarcode": "^3.11.0",
|
2020-09-03 22:27:44 +00:00
|
|
|
"qrcode": "^1.4.4",
|
|
|
|
"qrcode-svg": "^1.1.0",
|
2020-09-10 18:10:21 +00:00
|
|
|
"react": "~16.11.0",
|
|
|
|
"react-dom": "~16.11.0",
|
|
|
|
"react-native": "~0.62.2",
|
2020-09-01 02:12:32 +00:00
|
|
|
"react-native-canvas": "^0.1.37",
|
2020-09-01 19:55:23 +00:00
|
|
|
"react-native-easy-grid": "^0.2.2",
|
2020-09-10 18:10:21 +00:00
|
|
|
"react-native-gesture-handler": "~1.6.1",
|
2020-09-01 02:12:32 +00:00
|
|
|
"react-native-html-to-pdf": "^0.8.0",
|
|
|
|
"react-native-paper": "^4.1.0",
|
|
|
|
"react-native-print": "^0.6.0",
|
2020-09-02 21:09:49 +00:00
|
|
|
"react-native-qrcode-svg": "^6.0.6",
|
2020-09-10 18:10:21 +00:00
|
|
|
"react-native-reanimated": "~1.9.0",
|
|
|
|
"react-native-screens": "~2.9.0",
|
2020-09-01 02:12:32 +00:00
|
|
|
"react-native-share": "^3.7.0",
|
|
|
|
"react-native-svg": "^12.1.0",
|
|
|
|
"react-native-svg-transformer": "^0.14.3",
|
2020-09-10 18:10:21 +00:00
|
|
|
"react-native-unimodules": "~0.10.1",
|
2020-09-01 02:12:32 +00:00
|
|
|
"react-native-vector-icons": "^7.0.0",
|
2020-09-10 18:10:21 +00:00
|
|
|
"react-native-web": "~0.11.7",
|
2020-09-01 02:12:32 +00:00
|
|
|
"react-native-webview": "^10.8.3"
|
2020-08-28 19:35:51 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-29 03:40:55 +00:00
|
|
|
"@babel/core": "^7.8.6",
|
2020-09-01 02:12:32 +00:00
|
|
|
"babel-jest": "~25.2.6",
|
|
|
|
"jest": "~25.2.6",
|
|
|
|
"react-test-renderer": "~16.11.0",
|
2020-09-09 12:39:31 +00:00
|
|
|
"@types/react": "~16.9.41",
|
|
|
|
"@types/react-native": "^0.62.18",
|
2020-08-29 03:40:55 +00:00
|
|
|
"typescript": "~3.9.5"
|
2020-08-28 19:35:51 +00:00
|
|
|
},
|
2020-09-01 02:12:32 +00:00
|
|
|
"private": true,
|
|
|
|
"name": "uva-covid19-testing-kiosk",
|
|
|
|
"version": "1.0.0"
|
2020-09-10 18:10:21 +00:00
|
|
|
}
|