Skip to content

Instantly share code, notes, and snippets.

@miyamotodev123
Last active January 2, 2016 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miyamotodev123/a95de31c1bd658f3a64f to your computer and use it in GitHub Desktop.
Save miyamotodev123/a95de31c1bd658f3a64f to your computer and use it in GitHub Desktop.
Package.json for TDD tutorial - initial
{
"name": "tdd-mocha-express-passport",
"version": "0.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha tests/server"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "~4.8.8", // framework
"morgan": "~1.3.0", // logging request details
"compression": "~1.0.11",
"body-parser": "~1.8.0",
"method-override": "~2.2.0",
"express-session": "~1.7.6",
"mongoose": "~3.8.36", // object modeling for mongo database
"passport": "~0.2.1", // module for authentication
"passport-local": "~1.0.0" // passport implementation for local login
},
"devDependencies": {
"should": "~7.1.1",
"mocha": "~2.3.3",
"supertest": "~1.1.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment