-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "discord-media-helper",
"version": "2.1.0",
"type": "module",
"main": "dist/",
"scripts": {
"build": "tsc",
"caddy": ".\\bin\\caddy.exe file-server --browse --root tmp",
"cloudflared": ".\\bin\\cloudflared.exe tunnel run dmh",
"dev": "ts-node src/",
"watch": "concurrently \"tsc -w\" \"nodemon --delay 5 dist\"",
"web": "concurrently \"npm:caddy\" \"npm:cloudflared\""
},
"devDependencies": {
"@types/download": "^8.0.5",
"@types/got": "^9.6.12",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"concurrently": "^8.2.2",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@types/ms": "^0.7.34",
"discord.js": "^14.16.3",
"dotenv": "^16.3.1",
"download": "^8.0.0",
"got": "^13.0.0",
"leekslazylogger": "^6.0.0",
"ms": "^2.1.3",
"p-queue": "^7.4.1"
}
}