-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "nodejs-restify-redis-mongo-boilerplate",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node bin/server",
"test": "NODE_ENV=test mocha --recursive test",
"lint": "jshint bin lib/ config/ app.js && jscs bin/ lib/ config/ app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Antonhansel/nodejs-restify-redis-mongo-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Antonhansel/nodejs-restify-redis-mongo-boilerplate/issues"
},
"homepage": "https://github.com/Antonhansel/nodejs-restify-redis-mongo-boilerplate#readme",
"dependencies": {
"async": "^0.9.0",
"auto-load": "^1.1.0",
"express": "2.5.5",
"express-session": "^1.11.2",
"mongoose": "=3.8.26",
"morgan": "^1.7.0",
"socket.io": "^1.4.6",
"underscore": "^1.8.3"
},
"devDependencies": {
"create-dataset": "^1.0.2",
"debug": "^2.2.0",
"factory-lady": "^0.1.0",
"formidable": "^1.0.17",
"jscs": "^1.11.3",
"jshint": "^2.6.3",
"mocha": "^2.2.5",
"mocha-mongoose": "^1.0.4",
"mongodb": "^1.4.38",
"should": "^6.0.3",
"supertest": "^1.0.1"
}
}