-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "beer-tab",
"version": "0.0.1",
"description": "beer as social currency",
"main": "server/server.js",
"repository": {
"type": "git",
"url": "git://github.com/ViridescentGrizzly/beer-tab.git"
},
"license": "MIT",
"author": "Viridescent Grizzly",
"contributors": [
{
"name": "Michael Kurrels",
"email": "[email protected]"
},
{
"name": "Nate Meier",
"email": "[email protected]"
},
{
"name": "Andrés Viesca",
"email": "[email protected]"
},
{
"name": "Steven Wu",
"email": "[email protected]"
}
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-cssmin": "^0.13.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-nodemon": "^0.4.0",
"grunt-shell": "^1.1.2",
"mocha": "^2.2.5"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^2.9.34",
"body-parser": "^1.13.3",
"express": "^4.13.3",
"jwt-simple": "^0.3.0",
"mongodb": "^2.0.40",
"mongoose": "^4.1.2",
"morgan": "^1.6.1",
"request": "^2.60.0"
}
}