-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "discord-typescript-boilerplate",
"version": "1.0.0",
"description": "A discord.js boilerplate to start building your bot with.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"start": "ts-node ./src/index.ts",
"dev": "ts-node-dev --watch ./src/**/*.ts ./src/index.ts",
"deploy": "ts-node ./src/index.ts deploy",
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/bunyan-format": "^0.2.5",
"@types/node": "^18.11.12",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.29.0"
},
"dependencies": {
"@discordjs/builders": "^1.4.0",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"discord.js": "^14.7.1"
}
}