-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "movies-service",
"version": "1.0.0",
"description": "A movie service, microservice example with nodejs",
"author": {
"name": "Bluefyre",
"email": "hello@bluefyre.io"
},
"license": "MIT",
"main": "index.js",
"standard": {
"env": [
"mocha"
],
"ignore": [
"mock"
]
},
"scripts": {
"test": "mocha -R spec src/**/*.spec.js",
"start": "node src/index.js",
"lint": "standard --verbose | snazzy",
"node-debug": "DEBUG=express* node src/index.js",
"chrome-debug": "node --debug-brk --inspect src/index.js"
},
"keywords": [
"express",
"mongodb",
"docker",
"microservice"
],
"devDependencies": {
"eslint": ">=4.18.2"
"mocha": "^3.2.0",
"should": "^11.1.2",
"snazzy": "^6.0.0",
"standard": "^8.6.0",
"supertest": "^2.0.1"
},
"dependencies": {
"express": "^4.14.0",
"helmet": "^3.4.0",
"http-status": "^0.2.5",
"mongodb": "^2.1.18",
"morgan": "^1.7.0",
"jaeger-client": "3.x.x"
}
}