-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "node-boilerplate",
"version": "0.2.0",
"description": "A boilerplate application to get you up and running fast",
"main": "server.js",
"scripts": {
"test": "NODE_ENV='test' mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JakeDluhy/node-boilerplate.git"
},
"keywords": [
"node",
"ember",
"server",
"node server",
"node api server"
],
"author": "Jake Dluhy",
"license": "ISC",
"bugs": {
"url": "https://github.com/JakeDluhy/node-boilerplate/issues"
},
"homepage": "https://github.com/JakeDluhy/node-boilerplate#readme",
"dependencies": {
"bcrypt": "^0.8.5",
"bluebird": "^2.9.34",
"body-parser": "^1.13.3",
"bookshelf": "^0.8.1",
"checkit": "^0.5.1",
"express": "^4.13.1",
"express-handlebars": "^2.0.1",
"express-jwt": "^3.0.1",
"express-session": "^1.11.3",
"handlebars": "^3.0.3",
"ioredis": "^1.14.0",
"jsonwebtoken": "^5.0.5",
"jwt-decode": "^1.4.0",
"knex": "^0.8.6",
"lodash": "^3.10.1",
"material-ui": "^0.10.1",
"md5": "^2.0.0",
"moment": "^2.10.6",
"nodemailer": "^1.4.0",
"object-assign": "^3.0.0",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"pg": "^4.4.1",
"request": "^2.61.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babelify": "^6.1.3",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"factory-girl": "^2.1.0",
"factory-girl-bookshelf": "^1.0.2",
"grunt": "^0.4.5",
"grunt-nodemon": "^0.4.0",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.3.3",
"sinon": "^1.17.1",
"sinon-as-promised": "^4.0.0",
"supertest": "^1.1.0"
}
}