This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nodejs-microservice-poc",
"description": "Microservice PoC running at Nodejs inside Docker",
"version": "0.0.0",
"homepage": "https://github.com/ismarslomic/nodejs-microservice-poc",
"bugs": "https://github.com/ismarslomic/nodejs-microservice-poc/issues",
"license": "MIT",
"main": "server/nodejs-microservice-poc.js",
"author": {
"name": "Ismar Slomic",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ismarslomic/nodejs-microservice-poc"
},
"keywords": [
"nodejs-microservice-poc",
"nodejs",
"restify",
"docker",
"microservice"
],
"dependencies": {
"debug": "2.2.0",
"lodash": "3.10.1",
"mongoose": "^4.1.6",
"q": "1.4.1",
"restify": "^4.0.2",
"restify-mongoose": "git+https://github.com/saintedlama/restify-mongoose"
},
"devDependencies": {
"bunyan": "^1.5.1",
"bunyan-prettystream": "^0.1.3",
"codeclimate-test-reporter": "0.1.1",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-bump": "^0.3.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^2.0.0",
"gulp-jsdoc": "^0.1.4",
"gulp-jshint": "^1.11.2",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-mocha": "^2.1.3",
"gulp-nodemon": "^2.0.4",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.6",
"jshint-stylish": "^2.0.1",
"map-stream": "0.1.0",
"minimist": "^1.2.0",
"require-dir": "^0.3.0",
"should": "^7.1.0",
"supertest": "^1.1.0"
},
"scripts": {
"docs": "gulp docs",
"coveralls": "gulp coveralls",
"test": "gulp test",
"start": "node ./bin/server.js --env production"
}
}