-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "webserver-skeleton",
"description": "Skeleton for a webserver application with serverside template rendering",
"version": "1.0.0",
"homepage": "http://github.com/dragonnodejs/webserver-skeleton",
"license": "MIT",
"readmeFilename": "README.md",
"main": "app.js",
"scripts": {
"postinstall": "npm run bower && npm run css && npm run js",
"bower": "bower install",
"css": "minify ./web/css/app.css",
"js": "minify ./web/js/app.js",
"start": "node cluster.js",
"start-watch": "nodemon --watch modules app.js",
"test": "mocha -R spec"
},
"dependencies": {
"dragonnodejs": "^4.0.4",
"dragonnodejs-express": "^2.1.1",
"dragonnodejs-webserver": "^9.1.1",
"body-parser": "^1.10.2",
"bower": "^1.3.12",
"connect-flash": "^0.1.1",
"cookie-session": "^1.1.0",
"minifier": "^0.6.2",
"newrelic": "^1.15.1",
"throng": "^1.0.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"nodemon": "^1.3.7"
},
"repository": {
"type": "git",
"url": "https://github.com/dragonnodejs/webserver-skeleton.git"
}
}