-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1015 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1015 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
28
29
30
31
32
33
34
35
{
"name": "discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:eslint": "eslint --ext .js .",
"lint:prettier": "prettier --check .",
"format:write": "prettier --write src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcejump/discord-bot.git"
},
"author": "SourceJump",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcejump/discord-bot/issues"
},
"homepage": "https://github.com/sourcejump/discord-bot#readme",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"discord-api-types": "^0.32.1",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"mysql2": "^2.3.3",
"typeorm": "^0.3.6"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2"
}
}