-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.33 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "manage-my-money-server",
"description": "A sample application to demonstrate best practices in Node.js, REST and Bookshelf",
"version": "0.1.0",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/archfirst/manage-my-money-server",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/manage-my-money-server.git"
},
"scripts": {
"init": "npm install",
"start": "node server/server.js | bunyan -o short",
"test": "gulp test"
},
"dependencies": {
"bluebird": "^2.9.30",
"body-parser": "^1.13.1",
"bookshelf": "^0.8.1",
"bunyan": "^1.4.0",
"cors": "^2.7.1",
"express": "^4.12.4",
"knex": "^0.8.6",
"lodash": "^3.9.3",
"pg": "^4.4.0",
"pg-parse-float": "0.0.1"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-datetime": "^1.4.0",
"chai-stats": "^0.3.0",
"chalk": "^1.0.0",
"cucumber": "^0.5.1",
"debug": "^2.2.0",
"del": "^1.2.0",
"glob": "^5.0.10",
"gulp": "^3.9.0",
"gulp-if": "^1.2.5",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.11.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-nodemon": "^2.0.3",
"gulp-print": "^1.1.0",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.5",
"jshint-stylish": "^2.0.0",
"mustache": "^2.1.2",
"yargs": "^3.12.0"
}
}