-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from nextlevelshit/master
Added development mode for running app in browser with sql.js
- Loading branch information
Showing
5 changed files
with
159 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,64 @@ | ||
{ | ||
"name": "ionic-example", | ||
"version": "1.0.0", | ||
"author": "Daniel Lang", | ||
"scripts": { | ||
"clean": "ionic-app-scripts clean", | ||
"build": "ionic-app-scripts build", | ||
"lint": "ionic-app-scripts lint", | ||
"ionic:build": "ionic-app-scripts build", | ||
"ionic:serve": "ionic-app-scripts serve" | ||
}, | ||
"config": { | ||
"ionic_webpack": "./config/webpack.config.js" | ||
}, | ||
"dependencies": { | ||
"@angular/common": "4.4.3", | ||
"@angular/compiler": "4.4.3", | ||
"@angular/compiler-cli": "4.4.3", | ||
"@angular/core": "4.4.3", | ||
"@angular/forms": "4.4.3", | ||
"@angular/http": "4.4.3", | ||
"@angular/platform-browser": "4.4.3", | ||
"@angular/platform-browser-dynamic": "4.4.3", | ||
"@ionic-native/core": "4.3.0", | ||
"@ionic-native/splash-screen": "4.3.0", | ||
"@ionic-native/status-bar": "4.3.0", | ||
"@ionic/storage": "2.0.1", | ||
"cordova-android": "^6.3.0", | ||
"cordova-ios": "^4.5.0", | ||
"cordova-plugin-device": "^1.1.4", | ||
"cordova-plugin-splashscreen": "^4.0.3", | ||
"cordova-plugin-statusbar": "^2.2.2", | ||
"cordova-plugin-whitelist": "^1.3.1", | ||
"cordova-sqlite-storage": "^2.0.4", | ||
"ionic-angular": "3.7.0", | ||
"ionic-plugin-keyboard": "^2.2.1", | ||
"ionicons": "3.0.0", | ||
"rxjs": "5.4.3", | ||
"sw-toolbox": "3.6.0", | ||
"typeorm": "0.1.6", | ||
"zone.js": "0.8.17" | ||
}, | ||
"devDependencies": { | ||
"@ionic/app-scripts": "^3.0.0", | ||
"@types/node": "^8.0.31", | ||
"typescript": "2.3.4" | ||
}, | ||
"description": "An Ionic project", | ||
"cordova": { | ||
"plugins": { | ||
"cordova-plugin-device": {}, | ||
"cordova-plugin-splashscreen": {}, | ||
"cordova-plugin-statusbar": {}, | ||
"cordova-plugin-whitelist": {}, | ||
"ionic-plugin-keyboard": {}, | ||
"cordova-sqlite-storage": {} | ||
"name": "ionic-example", | ||
"version": "1.0.0", | ||
"author": "Daniel Lang", | ||
"scripts": { | ||
"clean": "ionic-app-scripts clean", | ||
"build": "ionic-app-scripts build", | ||
"lint": "ionic-app-scripts lint", | ||
"ionic:build": "ionic-app-scripts build", | ||
"ionic:serve": "ionic-app-scripts serve" | ||
}, | ||
"platforms": [ | ||
"android", | ||
"ios" | ||
] | ||
} | ||
"config": { | ||
"ionic_webpack": "./config/webpack.config.js" | ||
}, | ||
"dependencies": { | ||
"@angular/common": "4.4.3", | ||
"@angular/compiler": "4.4.3", | ||
"@angular/compiler-cli": "4.4.3", | ||
"@angular/core": "4.4.3", | ||
"@angular/forms": "4.4.3", | ||
"@angular/http": "4.4.3", | ||
"@angular/platform-browser": "4.4.3", | ||
"@angular/platform-browser-dynamic": "4.4.3", | ||
"@ionic-native/core": "4.3.0", | ||
"@ionic-native/splash-screen": "4.3.0", | ||
"@ionic-native/status-bar": "4.3.0", | ||
"@ionic/storage": "2.0.1", | ||
"cordova-android": "^6.4.0", | ||
"cordova-ios": "^4.5.0", | ||
"cordova-plugin-device": "^1.1.7", | ||
"cordova-plugin-splashscreen": "^4.1.0", | ||
"cordova-plugin-statusbar": "^2.4.1", | ||
"cordova-plugin-whitelist": "^1.3.3", | ||
"cordova-sqlite-storage": "^2.2.1", | ||
"ionic-angular": "3.7.0", | ||
"ionic-plugin-keyboard": "^2.2.1", | ||
"ionicons": "3.0.0", | ||
"rxjs": "5.4.3", | ||
"sw-toolbox": "3.6.0", | ||
"typeorm": "0.1.6", | ||
"zone.js": "0.8.17" | ||
}, | ||
"devDependencies": { | ||
"@ionic/app-scripts": "^3.0.0", | ||
"@types/node": "^8.0.31", | ||
"sql.js": "^0.5.0", | ||
"typescript": "2.3.4" | ||
}, | ||
"description": "An Ionic project", | ||
"cordova": { | ||
"plugins": { | ||
"cordova-plugin-device": {}, | ||
"cordova-plugin-splashscreen": {}, | ||
"cordova-plugin-statusbar": {}, | ||
"cordova-plugin-whitelist": {}, | ||
"ionic-plugin-keyboard": {}, | ||
"cordova-sqlite-storage": {} | ||
}, | ||
"platforms": [ | ||
"android", | ||
"ios" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters