Skip to content

Commit

Permalink
Setup package.json to use npm automated install. Also added .gitignor…
Browse files Browse the repository at this point in the history
…e for node_modules
  • Loading branch information
robrighter committed Dec 30, 2011
1 parent 9f67c1c commit 3e88145
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/app/.gitignore
@@ -0,0 +1 @@
node_modules
17 changes: 17 additions & 0 deletions templates/app/package.json
@@ -0,0 +1,17 @@
{
"name": "YOUR-PROJECT-NAME-HERE",
"description": "YOUR PROJECT DESCRIPTION HERE",
"author": "YOUR NAME <your@emailaddress.com>",
"version": "0.0.1",
"dependencies": {
"connect": "1.8.5",
"express": "2.5.2",
"jade": "0.20.0",
"mongoose": "2.4.8",
"socket.io": "0.8.7"
},
"devDependencies": {
"vows": "0.5.x"
},
"engine": "node >= 0.6.6"
}

0 comments on commit 3e88145

Please sign in to comment.