Skip to content

Instantly share code, notes, and snippets.

@jcolemorrison
Created April 14, 2014 13:45
Show Gist options
  • Save jcolemorrison/10649413 to your computer and use it in GitHub Desktop.
Save jcolemorrison/10649413 to your computer and use it in GitHub Desktop.
Building an Angular and Express App Part 1: package.json - J Cole Morrison
{
"name": "angular-express-part1",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "NODE_ENV=production nodemon ./bin/www",
"test": "NODE_ENV=development nodemon ./bin/www"
},
"dependencies": {
"express": "~4.0.0",
"static-favicon": "~1.0.0",
"morgan": "~1.0.0",
"cookie-parser": "~1.0.1",
"body-parser": "~1.0.0",
"debug": "~0.7.4",
"jade": "~1.3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment