Browse Source

resolve peer dependencies

feature/admob
dslak 2 years ago
parent
commit
eea862cd18
  1. 5
      package.json
  2. BIN
      vds-app/App/components/.ExamQuestions.js.kate-swp
  3. 2
      vds-app/App/components/ExamQuestions.js
  4. BIN
      vds-app/App/screens/.Exam.js.kate-swp
  5. BIN
      vds-app/App/screens/.Quiz.js.kate-swp
  6. BIN
      vds-app/App/screens/.QuizIndex.js.kate-swp
  7. BIN
      vds-app/App/screens/.Recap.js.kate-swp
  8. BIN
      vds-app/App/screens/.RecapTrueFalse.js.kate-swp
  9. BIN
      vds-app/App/screens/.Results.js.kate-swp
  10. BIN
      vds-app/App/screens/.Setup.js.kate-swp
  11. BIN
      vds-app/App/screens/.Splash.js.kate-swp
  12. 2
      vds-app/App/screens/Exam.js
  13. 2
      vds-app/App/screens/Quiz.js
  14. 2
      vds-app/App/screens/QuizIndex.js
  15. 2
      vds-app/App/screens/Recap.js
  16. 2
      vds-app/App/screens/RecapTrueFalse.js
  17. 2
      vds-app/App/screens/Results.js
  18. 2
      vds-app/App/screens/Setup.js
  19. 2
      vds-app/App/screens/Splash.js
  20. BIN
      vds-app/dist/bundles/.android-21da78b5401f0954d05cf90eba32fc85.map.kate-swp
  21. BIN
      vds-app/dist/bundles/.ios-62b68d2e0eb54df3fa8210b6752aa722.map.kate-swp
  22. 13
      vds-app/package.json

5
package.json

@ -1,5 +0,0 @@
{
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.12"
}
}

BIN
vds-app/App/components/.ExamQuestions.js.kate-swp

Binary file not shown.

2
vds-app/App/components/ExamQuestions.js

@ -1,5 +1,5 @@
import React from "react"
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import aerodynamicsQuestions from "../data/aerodynamics"
import firstAidQuestions from "../data/firstAid"

BIN
vds-app/App/screens/.Exam.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.Quiz.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.QuizIndex.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.Recap.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.RecapTrueFalse.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.Results.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.Setup.js.kate-swp

Binary file not shown.

BIN
vds-app/App/screens/.Splash.js.kate-swp

Binary file not shown.

2
vds-app/App/screens/Exam.js

@ -1,7 +1,7 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, ImageBackground, BackHandler } from "react-native"
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { colors, texts, examScheme } from "../components/Variables"

2
vds-app/App/screens/Quiz.js

@ -2,7 +2,7 @@ import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, Dimensions, ImageBackground, BackHandler } from "react-native"
import { Picker } from '@react-native-picker/picker'
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { texts, colors, credentials } from "../components/Variables"

2
vds-app/App/screens/QuizIndex.js

@ -1,6 +1,6 @@
import React from "react"
import { View, ScrollView, StatusBar, BackHandler, StyleSheet, Dimensions, ImageBackground } from "react-native"
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import aerodynamicsQuestions from "../data/aerodynamics"
import firstAidQuestions from "../data/firstAid"

2
vds-app/App/screens/Recap.js

@ -1,7 +1,7 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, Dimensions, Image, ImageBackground, BackHandler} from "react-native"
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { colors, texts, examScheme, credentials } from "../components/Variables"

2
vds-app/App/screens/RecapTrueFalse.js

@ -1,7 +1,7 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, Dimensions, Image, ImageBackground, BackHandler } from "react-native"
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { colors, texts, examScheme, credentials } from "../components/Variables"

2
vds-app/App/screens/Results.js

@ -1,7 +1,7 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, Dimensions, Image, BackHandler} from "react-native"
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { colors, texts, examScheme } from "../components/Variables"

2
vds-app/App/screens/Setup.js

@ -1,7 +1,7 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, CheckBox, Switch, Dimensions, Image, ImageBackground, BackHandler } from "react-native"
import SafeAreaView from 'react-native-safe-area-view'
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import { Button, ButtonContainer } from "../components/Button"
import { colors, texts, examScheme, resultsScheme} from "../components/Variables"

2
vds-app/App/screens/Splash.js

@ -1,6 +1,6 @@
import React from "react"
import { View, ScrollView, StyleSheet, StatusBar, Text, Dimensions, Image, Alert, BackHandler } from "react-native"
import AsyncStorage from '@react-native-community/async-storage'
import AsyncStorage from '@react-native-async-storage/async-storage'
import SafeAreaView from 'react-native-safe-area-view'
import { Button, ButtonContainer } from "../components/Button"

BIN
vds-app/dist/bundles/.android-21da78b5401f0954d05cf90eba32fc85.map.kate-swp

Binary file not shown.

BIN
vds-app/dist/bundles/.ios-62b68d2e0eb54df3fa8210b6752aa722.map.kate-swp

Binary file not shown.

13
vds-app/package.json

@ -1,6 +1,7 @@
{
"name": "vds-quiz",
"version": "3.7.0",
"license": "MIT",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
@ -15,15 +16,16 @@
},
"dependencies": {
"@expo/config-plugins": "^6.0.1",
"@react-native-async-storage/async-storage": "^1.17.12",
"@react-native-picker/picker": "^2.4.9",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-native-picker/picker": "^2.4.8",
"expo": "^48.0.8",
"expo-build-properties": "~0.5.1",
"expo-dev-client": "~2.1.6",
"expo-permissions": "^14.1.1",
"expo-updates": "~0.16.3",
"react": "^18.2.0",
"react-native": "0.71.3",
"react-native": "0.71.4",
"react-native-gesture-handler": "^2.9.0",
"react-native-google-mobile-ads": "^10.0.0",
"react-native-reanimated": "~2.14.4",
@ -36,10 +38,15 @@
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@react-native-community/masked-view": "^0.1.11",
"babel-preset-expo": "^9.3.0",
"eslint": "^8.36.0",
"eslint-config-handlebarlabs": "^0.0.6",
"@babel/preset-env": "^7.20.2",
"prettier": "^2.8.6"
},
"peerDependencies": {
"expo-modules-autolinking": "^1.1.2"
},
"private": true
}

Loading…
Cancel
Save