-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 935 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
{
"name": "heroes",
"version": "1.0.0",
"description": "Project using Kubernetes that presents a simple API in Node.js with Postgres to insert, search, update and delete heroes.",
"main": "index.js",
"scripts": {
"start": "npx pm2-docker index.js",
"test": "sh test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegomais/heroes.git"
},
"keywords": [
"kubernetes",
"k8s",
"node",
"postgres"
],
"author": "Diego Mais <diegomais.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegomais/heroes/issues"
},
"homepage": "https://github.com/diegomais/heroes#readme",
"dependencies": {
"@hapi/hapi": "^20.1.2",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.0.1",
"hapi-swagger": "^14.1.0",
"joi": "^17.4.0",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"pm2": "^4.5.6",
"sequelize": "^6.6.2"
}
}