-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (42 loc) · 1.15 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
{
"name" : "NodeBootstrap"
, "version" : "0.5.1"
, "description" : "Node/Express.js Template with Twitter Bootstrap2 and other goodies"
, "author" : "Irakli Nadareishvili, John Nelson"
, "license" : {
"type" : "MIT"
, "url" : "https://github.com/inadarei/nodebootstrap/blob/master/LICENSE"
}
, "main" : "./server.js"
, "repository" : {
"type" : "git",
"url" : "https://github.com/inadarei/nodebootstrap"
}
, "engines": {
"node": ">=0.8.8"
}
, "dependencies": {
"yaml" : "*"
, "express" : "3.x"
, "config" : "*"
, "hbs" : "2.x"
, "less" : "1.x"
, "less-middleware" : "*"
, "async" : "*"
, "underscore" : "1.x"
, "metalogger" : "*"
, "mysql" : "*"
, "sequelize" : "2.*"
, "lodash" : "*"
, "moment" : "*"
, "downsize" : "*"
, "strong-cluster-connect-store" : "*"
}
, "devDependencies" : {
"should" : "*"
, "mocha" : "*"
}
, "scripts": {
"test" : "mocha"
}
}