-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.56 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
86
87
88
89
90
91
92
{
"name": "reedroux-bot",
"version": "1.0.0",
"author": "dawgcodes",
"description": "A discord.js bot written with TypeScript",
"license": "MIT",
"private": true,
"type": "module",
"exports": [
"./dist/bot.js",
"./dist/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/bot.js commands view",
"commands:register": "npm run build && node --enable-source-maps dist/bot.js commands register",
"commands:rename": "npm run build && node --enable-source-maps dist/bot.js commands rename",
"commands:delete": "npm run build && node --enable-source-maps dist/bot.js commands delete",
"commands:clear": "npm run build && node --enable-source-maps dist/bot.js commands clear",
"start": "npm run start:bot",
"prisma:migrate": "npx prisma migrate dev --name init",
"dev": "tsc-watch --onSuccess \"npm run watch\"",
"dev:manager": "tsc-watch --onSuccess \"npm run watch:manager\"",
"watch": "nodemon --watch './**/*.{ts}' --exec ts-node src/bot.ts",
"watch:manager": "nodemon --watch './**/*.{ts}' --exec ts-node src/manager.ts",
"start:bot": "npm run build && node --enable-source-maps dist/bot.js",
"start:manager": "npm run build && node --enable-source-maps dist/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"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"canvas": "^2.11.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"cron-parser": "^4.9.0",
"discord.js": "14.13.0",
"discord.js-rate-limiter": "1.3.2",
"express": "4.18.2",
"express-promise-router": "4.1.1",
"filesize": "10.1.0",
"i18n": "^0.15.1",
"linguini": "1.3.1",
"luxon": "3.4.3",
"node-fetch": "3.3.2",
"node-schedule": "2.1.1",
"pm2": "^5.3.0",
"reflect-metadata": "^0.1.13",
"remove-markdown": "^0.5.0",
"shoukaku": "^3.4.0",
"signale": "^1.4.0",
"tslib": "^2.6.2",
"undici": "^5.26.3"
},
"devDependencies": {
"@types/express": "4.17.19",
"@types/i18n": "^0.13.7",
"@types/luxon": "3.3.2",
"@types/node": "^20.8.6",
"@types/node-schedule": "2.1.1",
"@types/remove-markdown": "^0.3.2",
"@types/signale": "^1.4.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unicorn": "^48.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": false,
"underlineLabel": true
}
}