-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 998 Bytes
/
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
{
"name": "{{.ServiceNamePill}}",
"version": "0.0.0",
"description": "{{.ServiceNameLower}} service for bee-travels",
"private": true,
"scripts": {
"start": "nodemon -r esm ./src/bin/www.js",
"test": "nyc --require esm --cache false mocha \"src/**/?(*.)test.js\""
},
"dependencies": {
"axios": "^0.19.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"jaeger-client": "^3.18.0",
"openapi-comment-parser": "^0.3.4",
"opentracing": "^0.14.4",
"opossum": "^5.0.0",
"os": "^0.1.1",
"pino-http": "^5.1.0",
"pino-pretty": "^4.0.0",
"prom-client": "^12.0.0",
"response-time": "^2.3.2",
"swagger-ui-express": "^4.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"sinon": "^9.0.2"
},
"esm": {
"cache": false
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
]
}
}