-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "discord-bot",
"type": "module",
"private": true,
"description": "Discord bot for our server",
"author": "Codinglab <codinglabio@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsup-node src/main.ts",
"dev": "tsup-node src/main.ts --watch src --watch .env --watch pnpm-lock.yaml --on-success \"clear && node --enable-source-maps -r dotenv/config dist/main.js\"",
"test": "vitest",
"check:lint": "eslint src --report-unused-disable-directives",
"check:format": "prettier -c src",
"check:types": "tsc --noEmit",
"check": "run-s check:*"
},
"dependencies": {
"@keyv/redis": "2.8.5",
"change-case": "5.4.4",
"cheerio": "1.0.0-rc.12",
"cron": "3.1.7",
"discord.js": "14.15.3",
"ioredis": "5.4.1",
"keyv": "4.5.4",
"nanoid": "5.0.7",
"open-graph-scraper": "6.5.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.14.2",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-only-error": "1.0.2",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unused-imports": "3.2.0",
"npm-run-all2": "6.2.0",
"prettier": "3.3.2",
"tsup": "8.1.0",
"type-fest": "4.20.0",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"packageManager": "pnpm@9.3.0",
"engines": {
"node": "22.3.0"
}
}