-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "node-rest-template-lite",
"description": "A template to kick-start Node.js projects using best practices in Node.js and REST",
"version": "0.1.0",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/archfirst/node-rest-template-lite",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/node-rest-template-lite.git"
},
"scripts": {
"init": "npm install",
"start": "node server/server.js | bunyan -o short",
"test": "gulp test"
},
"dependencies": {
"bluebird": "^2.10.2",
"body-parser": "^1.14.1",
"bunyan": "^1.5.1",
"cors": "^2.7.1",
"create-error": "^0.3.1",
"express": "^4.13.3",
"lodash": "^3.10.0",
"pg": "^4.4.3",
"pg-parse-float": "0.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"chalk": "^1.1.1",
"debug": "^2.2.0",
"del": "^2.1.0",
"glob": "^6.0.1",
"gulp": "^3.9.0",
"gulp-if": "^2.0.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^1.12.0",
"gulp-load-plugins": "^1.1.0",
"gulp-nodemon": "^2.0.4",
"gulp-print": "^2.0.1",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"jshint-stylish": "^2.1.0",
"mocha": "^2.3.4",
"mustache": "^2.2.0",
"superagent": "^1.4.0",
"yadda": "^0.16.1",
"yargs": "^3.30.0"
}
}