-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "clarence",
"version": "1.0.0",
"description": "A multipurpose bot with admin, fun and information commands",
"main": "src/index.js",
"author": "Kieran Robson",
"license": "MIT",
"scripts": {
"dev": "nodemon -L src/index.js",
"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": [
"multipurpose",
"discord",
"discord-bot"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix",
"*.{json,md,html,css,scss,js,jsx,ts,tsx}": "prettier --write"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@iamtraction/google-translate": "^2.0.1",
"axios": "^1.7.7",
"canvas": "^2.11.2",
"discord-api-types": "^0.37.101",
"discord.js": "^13.17.1",
"dotenv": "^16.4.5",
"glob": "^7.2.3",
"iso-639-1": "^2.1.15",
"jsdom": "^21.1.2",
"lyrics-searcher": "^1.0.58",
"lyrics-searcher-musixmatch": "https://github.com/Boxy-Boy-Bot/lyrics-searcher-musixmatch.git",
"minecraft-assets": "^1.12.2",
"minecraft-data": "^3.69.0",
"mongoose": "6.11.3",
"node-movie": "^3.0.0",
"npm-stats-api": "^1.2.3",
"openweather-apis": "^4.5.0",
"r6s-stats-api": "^1.3.0",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@cspell/cspell-bundled-dicts": "^6.31.3",
"alex": "^11.0.1",
"cspell": "^6.31.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-requires-by-path": "^1.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
}
}