-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 838 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
42
{
"name": "Monitoshi",
"description": "Website uptime monitoring",
"version": "0.0.1",
"author": {
"name": "lexoyo"
},
"repository": {
"type": "git",
"url": "https://github.com/lexoyo/Monitoshi.git"
},
"keywords": [
"express",
"monitoring",
"uptime",
"rest",
"api"
],
"main": "pm2 start .pm2.json",
"license": "MIT",
"engines": {
"node": "~10.15.3"
},
"readmeFilename": "readme.md",
"dependencies": {
"body-parser": "1.19.0",
"ejs": "3.1.5",
"express": "4.17.1",
"gh-badges": "^1.3.0",
"moment": "^2.29.1",
"mongodb": "3.6.3",
"newrelic": "7.0.1",
"nodemailer": "6.4.16",
"pm2": "4.5.0"
},
"scripts": {
"start": "node app/",
"watch": "pm2 start .pm2.json",
"logs": "pm2 logs",
"serve": "mongod -dbpath ./data"
}
}