-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 1.11 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
{
"private": true,
"name": "discord-captcha",
"version": "2.0.0",
"description": "A simple captcha (reCAPTCHA v2, hCaptcha, Turnstile) verification bot for Discord.",
"author": "ckt1031",
"main": "src/index.ts",
"scripts": {
"lint": "tsc --noEmit && eslint --fix . && prettier -w .",
"dev": "tsx src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --outdir=dist"
},
"dependencies": {
"axios": "^1.7.7",
"body-parser": "1.20.3",
"discord.js": "14.16.3",
"dotenv": "16.4.5",
"ejs": "3.1.10",
"express": "4.21.1",
"express-rate-limit": "7.4.1",
"express-session": "1.18.1",
"qs": "6.13.0",
"valibot": "0.42.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "6.0.0",
"@types/express-session": "^1.18.0",
"@types/qs": "^6.9.16",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"prettier": "3.3.3",
"tsx": "^4.19.1",
"typescript-eslint": "^8.8.1"
},
"engines": {
"node": ">=16.9.0"
}
}