-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "bot-template",
"version": "1.0.0",
"description": "A bot used to log information about a Discord server",
"main": "index.js",
"author": "Luis Augusto",
"license": "MIT",
"scripts": {
"prepare": "./generate-types.sh",
"start": "yarn deploy-commands && node .",
"watch": "tsc --watch",
"deploy-commands": "node deploy-commands.js",
"build": "tsc",
"lint": "eslint --ext .ts,.json .",
"lintfix": "eslint --ext .ts,.json . --fix",
"format": "prettier --write \"**/*.{ts,json}\"",
"format:lint": "prettier --check \"**/*.{ts,json}\""
},
"dependencies": {
"@discordjs/rest": "^2.0.0",
"@logtail/node": "^0.4.0",
"@supabase/supabase-js": "^2.21.0",
"discord-api-types": "^0.37.37",
"discord.js": "^14.0.3",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"typescript": "^5.0.4"
},
"engines": {
"node": "^20.6.0"
}
}