-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
54
55
56
57
58
59
{
"name": "server-template",
"version": "0.0.0",
"description": "Template para servidor",
"main": "app.js",
"scripts": {
"test": "grunt test",
"postinstall": "npm install -g forever",
"start": "forever start app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fiddus/server-template.git"
},
"author": "Vinicius Teixeira",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiddus/server-template/issues"
},
"homepage": "https://github.com/fiddus/server-template",
"devDependencies": {
"chai": "^2.3.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-env": "^0.4.4",
"grunt-jscs": "^1.8.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5",
"nodemailer-stub-transport": "^1.0.0",
"supertest": "^0.15.0"
},
"dependencies": {
"activator": "^1.0.1",
"async": "^1.2.1",
"body-parser": "^1.12.4",
"bunyan": "^1.3.5",
"composable-middleware": "^0.3.0",
"cookie-parser": "^1.3.4",
"crypto": "0.0.3",
"ejs": "^2.3.1",
"errorhandler": "^1.3.6",
"express": "^4.12.3",
"express-bunyan-logger": "^1.1.1",
"express-format-response": "0.0.2",
"express-jwt": "^3.0.0",
"json-mask": "^0.3.4",
"jsonwebtoken": "^5.0.0",
"lodash": "^3.8.0",
"moment": "^2.10.3",
"mongoose": "^4.0.3",
"nodemailer": "^1.3.4",
"nodemailer-mailgun-transport": "^1.0.0",
"passport": "^0.2.1",
"passport-facebook": "^2.0.0",
"passport-local": "^1.0.0",
"promise": "^7.0.3",
"request": "^2.57.0"
}
}