-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
52 lines (45 loc) · 1.04 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
52
{
"name": "nodejs-rest-quickstart",
"description": "Quickstart project for NodeJS application",
"version": "0.0.1",
"author": "mendlik",
"repository": {
"type": "git",
"url": "https://github.com/exacode/nodejs-rest-quickstart.git"
},
"scripts": {
"start": "supervisor app/start.js"
},
"dependencies": {
"supervisor": "~0.5.6",
"mongoose": "~3.8.6",
"lodash": "~2.4.1",
"express": "~3.4.8",
"mongoose": "~3.8.6",
"bunyan": "~0.22.1",
"bunyan-prettystream": "~0.1.3"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-jshint": "~0.7.2",
"jshint-stylish": "~0.1.3",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.9.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-nodemon": "0.2.0",
"grunt-concurrent": "0.4.3",
"grunt-node-inspector": "0.1.2",
"load-grunt-tasks": "~0.2.0",
"time-grunt": "~0.2.1",
"mocha": "~1.17.1",
"chai": "~1.9.0",
"sinon": "1.7.3",
"blanket": "~1.1.6",
"supertest": "~0.9.0",
"nodemon": "1.0.14"
},
"engines": {
"node": "0.10.x"
}
}