-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 960 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
{
"name": "simple-microservices-template",
"version": "1.0.0",
"description": "App description",
"main": "index.js",
"scripts": {
"test": "./mocha-test.sh",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billymfl/simple-microservices-template.git"
},
"keywords": [
"microservice"
],
"author": "Billy Marin",
"license": "MIT",
"bugs": {
"url": "https://github.com/billymfl/simple-microservices-template/issues"
},
"homepage": "https://github.com/billymfl/simple-microservices-template#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-google": "^0.14.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"dependencies": {
"@hapi/hapi": "^18.3.2",
"@hapi/inert": "^5.2.1",
"@hapi/vision": "^5.5.3",
"axios": "^0.19.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"hapi-swagger": "^10.1.1"
}
}