-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
40 lines (35 loc) · 1.09 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
{
"author": "Alexey Prohorenko",
"name": "crud-bones",
"version": "0.0.1",
"scripts": {
"start": "node src/server.js"
},
"description": "Skeleton of CRUD application in Node.JS coming with all commonly used modules.",
"homepage": [ "http://alexeypro.com", "https://github.com/alexeypro/crud-bones" ],
"repository": {
"type": "git",
"url": "https://github.com/alexeypro/crud-bones"
},
"engines": {
"node": "~v0.6.14"
},
"dependencies": {
"mongoose" : "2.5.13",
"mysql" : "0.9.5",
"redis" : "0.7.1",
"express" : "3.0.0alpha1",
"ejs" : "0.7.1",
"async" : "0.1.18",
"config" : "0.4.11",
"cluster" : "0.7.7",
"winston" : "0.5.1",
"node-uuid" : "1.3.3",
"dateformat" : "1.0.2-1.2.3"
},
"devDependencies": {
"expresso" : "0.9.2",
"node-inspector" : "0.1.10",
"jasmine-node" : "1.0.24"
}
}