-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "portainer-deployer",
"version": "1.0.0",
"description": "Deployer of new versions of containers in portainer",
"main": "main.js",
"scripts": {
"start": "node main.js",
"start:dev": "nodemon main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SloCompTech/portainer-deployer.git"
},
"keywords": [
"portainer",
"docker",
"docker-compose",
"automation"
],
"author": "Martin Dagarin",
"license": "MIT",
"bugs": {
"url": "https://github.com/SloCompTech/portainer-deployer/issues"
},
"homepage": "https://github.com/SloCompTech/portainer-deployer#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"request-ip": "^2.1.3",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}