Skip to content

Commit d7e3e0d

Browse files
committed
🎉 First Commit ・ェ・
0 parents  commit d7e3e0d

File tree

8 files changed

+75
-0
lines changed

8 files changed

+75
-0
lines changed

.babelrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": ["babel-preset-expo"],
3+
"env": {
4+
"development": {
5+
"plugins": ["transform-react-jsx-source"]
6+
}
7+
}
8+
}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/**/*
2+
.expo/*
3+
npm-debug.*

.watchmanconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

assets/icons/app.png

7 KB
Loading

assets/icons/loading.png

7 KB
Loading

exp.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "rn-japan-live-cording",
3+
"description": "An empty new project",
4+
"slug": "rn-japan-live-cording",
5+
"privacy": "public",
6+
"sdkVersion": "15.0.0",
7+
"version": "1.0.0",
8+
"orientation": "portrait",
9+
"primaryColor": "#cccccc",
10+
"icon": "./assets/icons/app.png",
11+
"loading": {
12+
"icon": "./assets/icons/loading.png",
13+
"hideExponentText": false
14+
},
15+
"packagerOpts": {
16+
"assetExts": ["ttf", "mp4"]
17+
},
18+
"ios": {
19+
"supportsTablet": true
20+
}
21+
}

main.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import Expo from 'expo';
2+
import React from 'react';
3+
import { StyleSheet, Text, View } from 'react-native';
4+
5+
class App extends React.Component {
6+
render() {
7+
return (
8+
<View style={styles.container}>
9+
<Text>Open up main.js to start working on your app!</Text>
10+
</View>
11+
);
12+
}
13+
}
14+
15+
const styles = StyleSheet.create({
16+
container: {
17+
flex: 1,
18+
backgroundColor: '#fff',
19+
alignItems: 'center',
20+
justifyContent: 'center',
21+
},
22+
});
23+
24+
Expo.registerRootComponent(App);

package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "rn-japan-live-cording",
3+
"version": "0.0.0",
4+
"description": "Hello Expo!",
5+
"author": null,
6+
"private": true,
7+
"main": "main.js",
8+
"dependencies": {
9+
"expo": "^15.0.2",
10+
"react": "~15.4.0",
11+
"react-native": "https://github.com/exponent/react-native/archive/sdk-15.0.0.tar.gz",
12+
"react-native-animatable": "^1.1.1",
13+
"react-native-autogrow-textinput": "^3.0.1",
14+
"react-native-modalbox": "^1.3.9",
15+
"react-native-parallax-view": "git+https://github.com/YutamaKotaro/react-native-parallax-view.git",
16+
"react-native-swipe-cards": "^0.1.0"
17+
}
18+
}

0 commit comments

Comments
 (0)