-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 910 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **.js events/**.js commands/**.js models/**.js",
"lint-fix": "eslint --fix **.js events/**.js commands/**.js models/**.js",
"start": "node deploy-commands.js | node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MerryRosalie/discord-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MerryRosalie/discord-bot/issues"
},
"homepage": "https://github.com/MerryRosalie/discord-bot#readme",
"dependencies": {
"axios": "^1.1.3",
"cron": "^2.1.0",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.7"
},
"devDependencies": {
"eslint": "^8.28.0"
}
}