-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "lol-ranks-bot",
"version": "1.0.0",
"description": "A Discord bot to assign roles based on League of Legends Rank",
"keywords": [
"Discord",
"Bot",
"League of Legends",
"LoL"
],
"license": "CC BY-NC-SA 4.0",
"author": "AlthalusAvan feat. simwai",
"main": "bot.js",
"scripts": {
"always-debug": "nodemon -e \"js\" -i ./tests --inspect --trace-warnings ./src/bot.js",
"debug": "node --inspect --trace-warnings ./src/bot.js",
"lint": "eslint --ext .js,.json,.eslintrc --fix .",
"format": "prettier-eslint --write \"src/**/*.js\"",
"start": "node ./src/bot.js",
"test": "npx ava",
"stop-debug": "taskkill /F /IM node.exe"
},
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@discordjs/rest": "^0.4.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"bottleneck": "^2.19.5",
"cron": "^2.0.0",
"discord-api-types": "^0.32.1",
"discord.js": "^13.0.0",
"got": "^11.8.6",
"husky": "^8.0.3",
"i18n": "^0.14.2",
"lowdb": "^1.0.0",
"luxon": "^3.4.4"
},
"devDependencies": {
"ava": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-promise": "^6.0.0",
"nock": "^13.5.4",
"nodemon": "^2.0.16",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"sinon": "^17.0.1"
}
}