Browse Source

Upload files to ''

coral.salort 3 years ago
parent
commit
b8f5637353
5 changed files with 5808 additions and 0 deletions
  1. 9
    0
      App.js
  2. 33
    0
      app.json
  3. 6
    0
      babel.config.js
  4. 27
    0
      package.json
  5. 5733
    0
      yarn.lock

+ 9
- 0
App.js View File

@@ -0,0 +1,9 @@
1
+
2
+import React from 'react'; 
3
+import WelcomeScreen from './app/screens/WelcomeScreen.js';
4
+
5
+export default function App() {
6
+  return <WelcomeScreen />;
7
+}
8
+
9
+

+ 33
- 0
app.json View File

@@ -0,0 +1,33 @@
1
+{
2
+  "expo": {
3
+    "name": "GroceryPolice",
4
+    "slug": "GroceryPolice",
5
+    "version": "1.0.0",
6
+    "orientation": "portrait",
7
+    "icon": "./assets/icon.png",
8
+    "splash": {
9
+      "image": "./assets/splash.png",
10
+      "resizeMode": "contain",
11
+      "backgroundColor": "#ffffff"
12
+    },
13
+    "updates": {
14
+      "fallbackToCacheTimeout": 0
15
+    },
16
+    "assetBundlePatterns": [
17
+      "**/*"
18
+    ],
19
+    "ios": {
20
+      "supportsTablet": true
21
+    },
22
+    "android": {
23
+      "adaptiveIcon": {
24
+        "foregroundImage": "./assets/adaptive-icon.png",
25
+        "backgroundColor": "#FFFFFF"
26
+      }
27
+    },
28
+    "web": {
29
+      "favicon": "./assets/favicon.png"
30
+    },
31
+    "description": ""
32
+  }
33
+}

+ 6
- 0
babel.config.js View File

@@ -0,0 +1,6 @@
1
+module.exports = function(api) {
2
+  api.cache(true);
3
+  return {
4
+    presets: ['babel-preset-expo'],
5
+  };
6
+};

+ 27
- 0
package.json View File

@@ -0,0 +1,27 @@
1
+{
2
+  "main": "node_modules/expo/AppEntry.js",
3
+  "scripts": {
4
+    "start": "expo start",
5
+    "android": "expo start --android",
6
+    "ios": "expo start --ios",
7
+    "web": "expo start --web",
8
+    "eject": "expo eject"
9
+  },
10
+  "dependencies": {
11
+    "@react-native-community/masked-view": "0.1.10",
12
+    "expo": "~39.0.2",
13
+    "expo-status-bar": "~1.0.2",
14
+    "react": "16.13.1",
15
+    "react-dom": "16.13.1",
16
+    "react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
17
+    "react-native-gesture-handler": "~1.7.0",
18
+    "react-native-reanimated": "~1.13.0",
19
+    "react-native-safe-area-context": "3.1.4",
20
+    "react-native-screens": "~2.10.1",
21
+    "react-native-web": "~0.13.12"
22
+  },
23
+  "devDependencies": {
24
+    "@babel/core": "~7.9.0"
25
+  },
26
+  "private": true
27
+}

+ 5733
- 0
yarn.lock
File diff suppressed because it is too large
View File