-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 786 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 786 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
36
{
"name": "djs-template",
"version": "1.0.0",
"description": "DiscordJS Template",
"main": "index.js",
"scripts": {
"start": "node .",
"dev": "nodemon",
"prod": "npm start",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"discord",
"discordjs",
"discord.js",
"discord-js-bot",
"bot-template",
"discord-bot-boilerplate",
"discord-bot-template"
],
"author": "Yazılımcı Mekanı Dev Team",
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "^3.0.1",
"prettier": "2.8.3"
},
"license": "MIT",
"dependencies": {
"discord.js": "^14.25.1",
"dotenv-safe": "^8.2.0",
"sequelize": "^6.37.8"
}
}