Files
valorantDiscordBot/package.json
2022-08-26 18:19:28 +00:00

28 lines
598 B
JSON

{
"name": "valDiscord",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^1.1.0",
"discord.js": "^14.3.0",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@matt-fidd/eslint-config": "^1.3.4",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"scripts": {
"prepare": "husky install",
"lint": "yarn lint:check",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"register": "node registerCommands.js"
}
}