-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "today-what-bot",
"version": "1.0.0",
"author": "baekteun",
"description": "오늘뭐임의 배포를 책임져줄 봇",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.11.0"
},
"type": "module",
"exports": [
"./dist/index.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/index.js commands view",
"commands:register": "npm run build && node --enable-source-maps dist/index.js commands register",
"commands:rename": "npm run build && node --enable-source-maps dist/index.js commands rename",
"commands:delete": "npm run build && node --enable-source-maps dist/index.js commands delete",
"commands:clear": "npm run build && node --enable-source-maps dist/index.js commands clear",
"start": "npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/index.js"
},
"dependencies": {
"axios": "^1.6.7",
"cron-parser": "^4.9.0",
"discord.js": "14.14.1",
"discord.js-rate-limiter": "1.3.2",
"dotenv": "^16.4.1",
"express": "4.18.2",
"express-promise-router": "4.1.1",
"filesize": "10.1.0",
"linguini": "1.3.1",
"luxon": "3.4.4",
"node-fetch": "3.3.2",
"node-schedule": "2.1.1",
"plist": "^3.1.0",
"reflect-metadata": "^0.2.1",
"remove-markdown": "0.5.0"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/luxon": "3.3.7",
"@types/node": "^20.10.5",
"@types/node-schedule": "2.1.5",
"@types/plist": "^3.0.5",
"@types/remove-markdown": "0.3.4",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^50.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}