Skip to content

Commit 57cfb1e

Browse files
committed
First
0 parents  commit 57cfb1e

File tree

74 files changed

+628
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+628
-0
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
10+
# We recommend you to keep these unchanged
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.sass-cache/
17+
.tmp/
18+
.versions/
19+
coverage/
20+
dist/
21+
node_modules/
22+
tmp/
23+
temp/
24+
hooks/
25+
platforms/
26+
plugins/
27+
plugins/android.json
28+
plugins/ios.json
29+
www/
30+
$RECYCLE.BIN/
31+
32+
.DS_Store
33+
Thumbs.db
34+
UserInterfaceState.xcuserstate

README.md

Lines changed: 20 additions & 0 deletions

config.xml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3+
<name>V2 Test</name>
4+
<description>An awesome Ionic/Cordova app.</description>
5+
<author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author>
6+
<content src="index.html" />
7+
<access origin="*" />
8+
<allow-navigation href="http://ionic.local/*"/>
9+
<allow-intent href="http://*/*" />
10+
<allow-intent href="https://*/*" />
11+
<allow-intent href="tel:*" />
12+
<allow-intent href="sms:*" />
13+
<allow-intent href="mailto:*" />
14+
<allow-intent href="geo:*" />
15+
<platform name="android">
16+
<allow-intent href="market:*" />
17+
</platform>
18+
<platform name="ios">
19+
<allow-intent href="itms:*" />
20+
<allow-intent href="itms-apps:*" />
21+
</platform>
22+
<preference name="webviewbounce" value="false" />
23+
<preference name="UIWebViewBounce" value="false" />
24+
<preference name="DisallowOverscroll" value="true" />
25+
<preference name="android-minSdkVersion" value="16" />
26+
<preference name="BackupWebStorage" value="none" />
27+
28+
<!--
29+
Change these to configure how the splashscreen displays and fades in/out.
30+
More info here: https://github.com/apache/cordova-plugin-splashscreen
31+
-->
32+
<preference name="SplashMaintainAspectRatio" value="true" />
33+
<preference name="FadeSplashScreenDuration" value="300" />
34+
<preference name="SplashShowOnlyFirstTime" value="false" />
35+
<feature name="StatusBar">
36+
<param name="ios-package" onload="true" value="CDVStatusBar" />
37+
</feature>
38+
39+
<plugin name="ionic-plugin-keyboard" spec="~2.2.1"/>
40+
<plugin name="cordova-plugin-whitelist" spec="1.3.1"/>
41+
<plugin name="cordova-plugin-console" spec="1.0.5"/>
42+
<plugin name="cordova-plugin-statusbar" spec="2.2.1"/>
43+
<plugin name="cordova-plugin-device" spec="1.1.4"/>
44+
<plugin name="cordova-plugin-splashscreen" spec="~4.0.1"/>
45+
</widget>

ionic.config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "test-test",
3+
"app_id": "",
4+
"projectTypeId": "ionic-angular"
5+
}

package.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "test-test",
3+
"author": "Ionic Framework",
4+
"homepage": "http://ionicframework.com/",
5+
"private": true,
6+
"scripts": {
7+
"clean": "ionic-app-scripts clean",
8+
"build": "ionic-app-scripts build",
9+
"ionic:build": "ionic-app-scripts build",
10+
"ionic:serve": "ionic-app-scripts serve",
11+
"test": "karma start ./test-config/karma.conf.js"
12+
},
13+
"dependencies": {
14+
"@angular/common": "2.4.8",
15+
"@angular/compiler": "2.4.8",
16+
"@angular/compiler-cli": "2.4.8",
17+
"@angular/core": "2.4.8",
18+
"@angular/forms": "2.4.8",
19+
"@angular/http": "2.4.8",
20+
"@angular/platform-browser": "2.4.8",
21+
"@angular/platform-browser-dynamic": "2.4.8",
22+
"@angular/platform-server": "2.4.8",
23+
"@ionic-native/core": "3.1.0",
24+
"@ionic-native/splash-screen": "3.1.0",
25+
"@ionic-native/status-bar": "3.1.0",
26+
"@ionic/storage": "2.0.0",
27+
"ionic-angular": "2.2.0",
28+
"ionicons": "3.0.0",
29+
"rxjs": "5.0.1",
30+
"sw-toolbox": "3.4.0",
31+
"zone.js": "0.7.2"
32+
},
33+
"devDependencies": {
34+
"@ionic/app-scripts": "1.1.4",
35+
"@ionic/cli-build-ionic-angular": "0.0.3",
36+
"@ionic/cli-plugin-cordova": "0.0.9",
37+
"@types/jasmine": "^2.5.41",
38+
"@types/node": "^7.0.8",
39+
"angular2-template-loader": "^0.6.2",
40+
"html-loader": "^0.4.5",
41+
"jasmine": "^2.5.3",
42+
"karma": "^1.5.0",
43+
"karma-chrome-launcher": "^2.0.0",
44+
"karma-jasmine": "^1.1.0",
45+
"karma-jasmine-html-reporter": "^0.2.2",
46+
"karma-sourcemap-loader": "^0.3.7",
47+
"karma-webpack": "^2.0.3",
48+
"null-loader": "^0.1.1",
49+
"ts-loader": "^2.0.3",
50+
"typescript": "2.0.9"
51+
},
52+
"version": "0.0.1",
53+
"description": "An Ionic project"
54+
}
2.81 KB
1.13 KB
1.76 KB
4.22 KB

0 commit comments

Comments
 (0)