-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "user-api",
"version": "0.1.0",
"description": "API for handling all users account managment",
"main": "server.js",
"repository": {
"type": "git",
"url": "[email protected]:hashtagsell/user-api.git"
},
"scripts": {
"migrations": "bash init/apply-migrations.sh",
"start": "supervisor -e md,js,node server | bunyan -o short",
"test": "gulp test-all"
},
"author": "Brad Davis",
"license": "ISC",
"bugs": {
"url": "https://github.com/hashtagsell/user-api/issues"
},
"dependencies": {
"aglio": "^2.0.0",
"async": "^1.4.0",
"bcrypt": "^0.8.4",
"body-parser": "^1.13.2",
"bunyan": "^1.4.0",
"cors": "^2.7.1",
"countdown": "^2.6.0",
"express": "^4.13.1",
"jsonwebtoken": "^5.0.4",
"later": "^1.1.6",
"mongoose": "^4.0.8",
"mongoose-middleware": "^0.2.12",
"morgan": "^1.6.1",
"node-uuid": "^1.4.3",
"pretty-bytes": "^2.0.1",
"request": "^2.60.0",
"settings-lib": "^0.1.3",
"verror": "^1.6.0"
},
"devDependencies": {
"chai": "^3.2.0",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"jshint-stylish": "^2.0.1",
"run-sequence": "^1.1.2",
"supervisor": "^0.7.1"
}
}