-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
41 lines (41 loc) · 941 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
{
"name": "pm2-webui",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"start:dev": "npx nodemon",
"setup-admin-user": "node src/bin/setup-admin-user"
},
"keywords": [],
"author": "Surya T",
"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.1.2",
"prompts": "^2.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/suryamodulus/pm2-webui"
},
"bin": {
"pm2-webui": "./src/app.js"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}