forked from johndatserakis/koa-vue-notes-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made some changes, now using a promise based mysql library, importing…
… the dotenv files the es7 way where I can.
- Loading branch information
1 parent
1ec799f
commit 98f855f
Showing
7 changed files
with
78 additions
and
198 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,14 +10,6 @@ | |
"test": "npm run build; mocha --require 'babel-polyfill' --compilers js:babel-register", | ||
"build": "babel src -d build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/OrKoN/koa2-example-app.git" | ||
}, | ||
"keywords": [ | ||
"data", | ||
"node" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/OrKoN/koa2-example-app#readme", | ||
"dependencies": { | ||
|
@@ -28,8 +20,8 @@ | |
"koa": "^2.0.0-alpha.3", | ||
"koa-bodyparser": "^3.0.0", | ||
"koa-router": "^7.0.1", | ||
"mysql2": "^1.2.0", | ||
"objection": "^0.8.4", | ||
"promise-mysql": "^3.0.2", | ||
"promise-redis": "0.0.5", | ||
"redis": "^2.4.2" | ||
}, | ||
|
Oops, something went wrong.