mirror of
https://github.com/fergalmoran/argon-react-native.git
synced 2025-12-25 02:39:30 +00:00
argon launch
This commit is contained in:
2
CHANGELOG.md
Normal file
2
CHANGELOG.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
## [1.0.0] 2019-06-07
|
||||||
|
### Initial Release
|
||||||
40
ISSUE_TEMPLATE.md
Normal file
40
ISSUE_TEMPLATE.md
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Prerequisites
|
||||||
|
|
||||||
|
Please answer the following questions for yourself before submitting an issue.
|
||||||
|
|
||||||
|
- [ ] I am running the latest version
|
||||||
|
- [ ] I checked the documentation and found no answer
|
||||||
|
- [ ] I checked to make sure that this issue has not already been filed
|
||||||
|
- [ ] I'm reporting the issue to the correct repository (for multi-repository projects)
|
||||||
|
|
||||||
|
# Expected Behavior
|
||||||
|
|
||||||
|
Please describe the behavior you are expecting
|
||||||
|
|
||||||
|
# Current Behavior
|
||||||
|
|
||||||
|
What is the current behavior?
|
||||||
|
|
||||||
|
# Failure Information (for bugs)
|
||||||
|
|
||||||
|
Please help provide information about the failure if this is a bug. If it is not a bug, please remove the rest of this template.
|
||||||
|
|
||||||
|
## Steps to Reproduce
|
||||||
|
|
||||||
|
Please provide detailed steps for reproducing the issue.
|
||||||
|
|
||||||
|
1. step 1
|
||||||
|
2. step 2
|
||||||
|
3. you get it...
|
||||||
|
|
||||||
|
## Context
|
||||||
|
|
||||||
|
Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.
|
||||||
|
|
||||||
|
* Device:
|
||||||
|
* Operating System:
|
||||||
|
* Browser and Version:
|
||||||
|
|
||||||
|
## Failure Logs
|
||||||
|
|
||||||
|
Please include any relevant log snippets or files here.
|
||||||
21
LICENSE.md
Normal file
21
LICENSE.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2019 Creative Tim
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
32
package.json
32
package.json
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"name": "argon-react-native",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Argon React Native, based on Argon Design System. Coded by Creative Tim",
|
||||||
"main": "node_modules/expo/AppEntry.js",
|
"main": "node_modules/expo/AppEntry.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "expo start",
|
"start": "expo start",
|
||||||
@@ -6,6 +9,10 @@
|
|||||||
"ios": "expo start --ios",
|
"ios": "expo start --ios",
|
||||||
"eject": "expo eject"
|
"eject": "expo eject"
|
||||||
},
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/creativetimofficial/argon-react-native.git"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"expo": "^32.0.0",
|
"expo": "^32.0.0",
|
||||||
"galio-framework": "^0.5.1",
|
"galio-framework": "^0.5.1",
|
||||||
@@ -18,5 +25,28 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-preset-expo": "^5.0.0"
|
"babel-preset-expo": "^5.0.0"
|
||||||
},
|
},
|
||||||
"private": true
|
"keywords": [
|
||||||
|
"argon react native",
|
||||||
|
"argon design system",
|
||||||
|
"argon app react native",
|
||||||
|
"argon iOS",
|
||||||
|
"react native iOS",
|
||||||
|
"creative tim",
|
||||||
|
"argon Android",
|
||||||
|
"react native ui kit",
|
||||||
|
"react native expo",
|
||||||
|
"freebie",
|
||||||
|
"react native argon design",
|
||||||
|
"react native galio",
|
||||||
|
"galio argon free",
|
||||||
|
"galio react native free app",
|
||||||
|
"argon expo react native",
|
||||||
|
"react native ui template"
|
||||||
|
],
|
||||||
|
"author": "Creative Tim <hello@creative-tim.com> (https://www.creative-tim.com/)",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/creativetimofficial/argon-react-native/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://demos.creative-tim.com/argon-react-native"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user