Created
April 14, 2014 13:45
-
-
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
This file contains hidden or 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
{ | |
"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