Feature: First version of the REST API done

This commit is contained in:
2015-08-14 08:04:31 +00:00
commit e6fc0be0ed
28 changed files with 3170 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "cloud-budget",
"main": "app.js",
"dependencies": {
"express": "~4.5.1",
"mongoose": "~4.0.8",
"body-parser": "~1.4.2",
"method-override": "~2.0.2",
"morgan": "~1.6.0",
"file-stream-rotator": "~0.0.6",
"errorhandler": "~1.4.1",
"jsonwebtoken": "~5.0.4",
"bcrypt": "~0.8.3",
"passport": "~0.2.2",
"passport-local": "~1.0.0",
"passport-jwt": "~1.1.0"
},
"devDependencies": {
"mocha": "~2.2.5",
"supertest": "~1.0.1",
"should": "~7.0.2",
"sinon": "~1.15.4"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"start": "app.js"
}
}