forked from RichardSabol/Clarence-bot-ESS-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
{
"name": "clarence",
"version": "2.6.1",
"description": "A multipurpose bot with admin, fun and information commands",
"main": "src/index.js",
"scripts": {
"test": "jest --silent=false --verbose --runInBand --collectCoverage",
"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"
],
"author": "Kieran Robson",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.3.0",
"@iamtraction/google-translate": "^2.0.0",
"axios": "^1.1.3",
"canvas": "^2.10.2",
"discord-api-types": "^0.37.17",
"discord-xp": "^1.1.16",
"discord.js": "^13.12.0",
"dotenv": "^16.0.3",
"glob": "^7.2.3",
"iso-639-1": "^2.1.15",
"jest": "^29.3.1",
"jsdom": "^20.0.2",
"minecraft-assets": "^1.9.0",
"minecraft-data": "^3.18.0",
"mongoose": "^6.7.2",
"node-movie": "^3.0.0",
"openweather-apis": "^4.4.2",
"r6s-stats-api": "^1.2.0",
"ts-jest": "^29.0.3",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"alex": "^11.0.0",
"cspell": "^6.14.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-requires-by-path": "^1.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}