generated from KevinNovak/Discord-Bot-TypeScript-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "retouch",
"version": "1.0.0",
"author": "Otokotoba",
"description": "Retouch is a discord bot to protect your servers from trolling.",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.11.0"
},
"type": "module",
"exports": [
"./dist/start-bot.js",
"./dist/start-manager.js"
],
"scripts": {
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"commands:view": "npm run build && node --enable-source-maps dist/start-bot.js commands view",
"commands:register": "npm run build && node --enable-source-maps dist/start-command-service.js register",
"commands:rename": "npm run build && node --enable-source-maps dist/start-command-service.js rename",
"commands:delete": "npm run build && node --enable-source-maps dist/start-command-service.js delete",
"commands:clear": "npm run build && node --enable-source-maps dist/start-command-service.js clear",
"start": "npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/start-bot.js",
"start:manager": "npm run build && node --enable-source-maps dist/start-manager.js",
"start:pm2": "npm run build && npm run pm2:start",
"pm2:start": "pm2 start process.json",
"pm2:stop": "pm2 stop process.json",
"pm2:delete": "pm2 delete process.json",
"test": "c8 mocha --enable-source-maps"
},
"dependencies": {
"@discordjs/rest": "2.2.0",
"@keyv/redis": "^3.0.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cron-parser": "^4.9.0",
"discord.js": "14.14.1",
"discord.js-rate-limiter": "1.3.2",
"dotenv": "^16.4.5",
"express": "4.18.3",
"express-promise-router": "4.1.1",
"filesize": "10.1.0",
"keyv": "^5.0.1",
"linguini": "1.3.1",
"luxon": "3.4.4",
"node-fetch": "3.3.2",
"node-schedule": "2.1.1",
"pino": "8.19.0",
"pino-pretty": "10.3.1",
"pm2": "^5.3.1",
"reflect-metadata": "^0.2.1",
"remove-markdown": "0.5.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.15",
"@types/express": "4.17.21",
"@types/luxon": "3.4.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.28",
"@types/node-schedule": "2.1.6",
"@types/remove-markdown": "0.3.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"c8": "^9.1.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^51.0.1",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.2"
},
"packageManager": "npm@10.5.2+sha256.df0a1f7691654b94786013e5d5b80a873a7ffbae9c82c3bec8b5db76bc3b7dfd"
}