-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1023 Bytes
/
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
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "Discord Bot template using discord.js",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"start:dev": "tsc && node dist/src/index.js",
"start": "node dist/src/index.js",
"start:prod": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Derpinou/discord-bot-template.git"
},
"author": "Derpinou",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/Derpinou/discord-bot-template/issues"
},
"homepage": "https://github.com/Derpinou/discord-bot-template#readme",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"discord-api-types": "^0.32.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"typescript": "^4.0.2"
}
}