-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "angularjs-skeleton",
"description": "Skeleton for an AngularJS client application",
"version": "1.0.0",
"homepage": "http://github.com/dragonnodejs/angularjs-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": "browserify ./js/app.js -o ./web/js/app.js && minify ./web/js/app.js",
"js-watch": "watchify ./js/app.js -o ./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",
"bower": "^1.3.12",
"browserify": "^8.1.3",
"minifier": "^0.6.2",
"newrelic": "^1.15.1",
"throng": "^1.0.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"nodemon": "^1.3.7",
"watchify": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dragonnodejs/angularjs-skeleton.git"
}
}