-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "modibo",
"version": "1.0.0",
"description": "Modular Discord Bot",
"main": "src/main.js",
"scripts": {
"start": "cd src && node ./main.js",
"testing": "cd src && node --trace-deprecation --trace-warnings ./main.js --testing",
"dev": "npm run testing",
"update": "git checkout . && git checkout main && git pull && npm ci",
"clean": "git reset --hard && git clean -fdx -e \".env\" -e \".env.testing\" -e \"*.log\" -e \"*-audit.json\" && git checkout main && git pull && npm ci",
"cleanLogs": "rm logs/*",
"resetConfig": "cd src && node ./main.js --reset-config",
"showDefaultConfig": "cd src && node ./main.js --show-default-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcodeabode/MoDiBo.git"
},
"author": "devcodeabode",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/devcodeabode/MoDiBo/issues"
},
"homepage": "https://github.com/devcodeabode/MoDiBo#modibo",
"dependencies": {
"@typicalninja21/discord-winston": "^1.0.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"piston-client": "^1.0.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"prettier": {},
"engines": {
"node": ">=16.6.0"
},
"type": "module"
}