hullcss-discord-bot/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

{
2023-01-14 09:12:42 +00:00
"name": "hullcss",
"version": "3.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"spell": "cspell /**/",
"spell:code": "cspell src/**/",
"lint": "npx eslint src",
"lint:fix": "yarn run lint -- --fix",
"lint:language": "alex src/**/",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\"",
"prettier:code": "npx prettier src --check",
"prettier:code:fix": "yarn run prettier -- --write",
"prettier:all:fix": "prettier . --write",
"format": "yarn run prettier:all:fix && yarn run lint:fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2023-05-22 09:14:01 +01:00
"@discordjs/builders": "^1.6.3",
2023-07-24 09:14:41 +01:00
"discord-api-types": "^0.37.50",
2023-05-22 09:14:01 +01:00
"discord.js": "^13.16.0",
2023-06-26 09:19:51 +01:00
"dotenv": "^16.3.1",
2023-01-14 09:12:42 +00:00
"glob": "^7.2.3",
"json-to-frontmatter-markdown": "^1.0.0"
},
"devDependencies": {
"alex": "^11.0.0",
2023-07-17 09:15:51 +01:00
"cspell": "^6.31.2",
"eslint": "^8.45.0",
2023-05-22 09:14:01 +01:00
"eslint-config-prettier": "^8.8.0",
2023-01-17 01:08:55 +00:00
"eslint-plugin-import": "^2.27.5",
2023-01-14 09:12:42 +00:00
"eslint-plugin-prettier": "^4.2.1",
2023-05-22 09:14:01 +01:00
"prettier": "^2.8.8"
2023-01-14 09:12:42 +00:00
}
}