-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from jenjaina/show_users
Display list of current users; use browserify
- Loading branch information
Showing
6 changed files
with
2,058 additions
and
302 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/* |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
{ | ||
"name": "planning-poker", | ||
"description": "JRS Planning Poker", | ||
"version": "0.0.1", | ||
"main": "app.js", | ||
"private": true, | ||
"dependencies": { | ||
"express": "3.x", | ||
"socket.io": "0.9.x" | ||
}, | ||
"scripts": { | ||
"start": "app.js" | ||
}, | ||
"engines": { | ||
"node": "0.8.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jenjaina/planning-poker.git" | ||
} | ||
} | ||
"name": "planning-poker", | ||
"description": "JRS Planning Poker", | ||
"version": "0.0.1", | ||
"main": "app.js", | ||
"private": true, | ||
"dependencies": { | ||
"express": "3.x", | ||
"socket.io": "0.9.x", | ||
"underscore": "^1.8.3" | ||
}, | ||
"devDependencies": { | ||
"browserify": "~11.0.1" | ||
}, | ||
"scripts": { | ||
"start": "app.js" | ||
}, | ||
"engines": { | ||
"node": "0.8.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jenjaina/planning-poker.git" | ||
} | ||
} |
Oops, something went wrong.