-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 722 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 722 Bytes
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
{
"name": "discord-verification",
"version": "1.0.0",
"description": "This is a bot that verifies users on a discord server.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"tailwind": "npx tailwindcss -i ./source/website/public/stylesheet/input.css -o ./source/website/public/stylesheet/output.css --watch"
},
"keywords": [
"discord",
"verification",
"bot"
],
"author": "Dennis Heinrich <https://dennis-heinri.ch>",
"license": "GPL-3.0-only",
"dependencies": {
"body-parser": "^1.20.2",
"discord.js": "^14.14.1",
"express": "^4.19.2",
"express-ipfilter": "^1.3.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"tailwindcss": "^3.4.3"
}
}