-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "node-rest-template",
"description": "A template to develop RESTful APIs using Node.js, bookshelf.js and SQL",
"version": "0.1.0",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/archfirst/node-rest-template",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/node-rest-template.git"
},
"scripts": {
"init": "npm install",
"start": "node server/server.js",
"test": "gulp test"
},
"dependencies": {
"bluebird": "^2.9.3",
"body-parser": "^1.10.2",
"bookshelf": "^0.7.9",
"express": "^4.11.1",
"knex": "^0.7.3",
"pg": "^4.2.0",
"pg-parse-float": "0.0.1",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-stats": "^0.3.0",
"chalk": "^0.5.1",
"cucumber": "^0.4.7",
"debug": "^2.1.1",
"del": "^1.1.1",
"glob": "^4.3.5",
"gulp": "^3.8.10",
"gulp-if": "^1.2.5",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-load-plugins": "^0.8.0",
"gulp-nodemon": "^1.0.5",
"gulp-print": "^1.1.0",
"gulp-task-listing": "^1.0.0",
"gulp-util": "^3.0.2",
"jshint-stylish": "^1.0.0",
"yargs": "^1.3.3"
}
}