-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.38 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
45
46
47
{
"name": "twitchbot",
"version": "1.0.0",
"homepage": "https://github.com/Party-Hats/Dota-Quiz-Twitch-Bot",
"bugs": {
"url": "https://github.com/Party-Hats/Dota-Quiz-Twitch-Bot/issues"
},
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Party-Hats/Dota-Quiz-Twitch-Bot.git"
},
"private": true,
"config": {
"mainRunner": "main.js",
"serviceName": "twitchbot"
},
"scripts": {
"install": "npm install --no-optional",
"setup-system-startup": "pm2 startup --service-name $npm_package_config_serviceName",
"start:dev": "node $npm_package_config_mainRunner",
"start": "pm2 start $npm_package_config_mainRunner --name $npm_package_config_serviceName --log log/daemon.log --time",
"stop": "pm2 stop $npm_package_config_serviceName",
"restart": "pm2 reload $npm_package_config_serviceName",
"uninstall": "pm2 delete $npm_package_config_serviceName"
},
"engines": {
"node": ">=10",
"npm": ">=6.14"
},
"engineStrict": true,
"dependencies": {
"app-module-path": "^2.2.0",
"axios": "^0.20.0",
"basic-auth": "^2.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"locks": "^0.2.2",
"morgan": "~1.9.1",
"pm2": "^4.4.1",
"pug": "^3.0.0",
"rotating-file-stream": "^2.1.3",
"tmi.js": "^1.5.0"
}
}