-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "pm2-webui",
"version": "2.0.7",
"description": "PM2 WebUI Dashboard",
"main": "src/server.js",
"scripts": {
"test": "node src/bin/test",
"start": "node src/server.js",
"start:pm2": "pm2 start src/server.js --name pm2-webui-service --namespace monitoring",
"start:dev": "npx nodemon",
"setup-system": "node src/bin/setup-system"
},
"keywords": [],
"author": "Andry Cardoza",
"license": "MIT",
"dependencies": {
"@koa/router": "^10.0.0",
"ansi-to-html": "^0.6.14",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"envfile": "^6.17.0",
"event-stream": "^4.0.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-ejs": "^4.3.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"koa2-ratelimit": "^0.9.1",
"pm2": "^5.4.2",
"prompts": "^2.4.2",
"ssh2": "^1.16.0",
"ws": "^8.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/andrygc/pm2-webui"
},
"bin": {
"pm2-webui": "src/server.js"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}