-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "A Discord bot boilerplate including TypeScript and ESLint.",
"author": {
"email": "fellipeutaka@gmail.com",
"name": "Fellipe Utaka"
},
"license": "MIT",
"private": true,
"homepage": "https://github.com/fellipeutaka/discord-bot-template",
"repository": {
"type": "git",
"url": "https://github.com/fellipeutaka/discord-bot-template.git"
},
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node .",
"build": "tsup src/index.ts --minify",
"format": "prettier --write \"**/*.{json,ts}\"",
"lint": "eslint . --ext ts --fix"
},
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"firebase": "^11.0.2",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}