-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
67
{
"name": "corncierge",
"version": "3.0.0",
"description": "A moderation and command bot for Twitch and a fully integrated Discord bot.",
"main": "./app/index.js",
"exports": {
".": [
{
"require": "./app/index.js"
},
"./app/index.js"
]
},
"scripts": {
"test": "npm run lint && npm run docs:test",
"docs": "docgen --source app --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source app --custom docs/index.yml",
"lint": "eslint app",
"lint:fix": "eslint app --fix",
"prettier": "prettier --write app/**/*.js",
"prettier:config": "prettier --write config/**/*.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckohen/corncierge.git"
},
"author": "ckohen",
"license": "ISC",
"bugs": {
"url": "https://github.com/ckohen/corncierge/issues"
},
"homepage": "https://github.com/ckohen/corncierge#readme",
"dependencies": {
"@discordjs/collection": "^0.7.0",
"@sapphire/async-queue": "^1.2.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"humanize-duration": "^3.27.2",
"limiter": "^2.1.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"pluralize": "^8.0.0",
"tmi.js": "^1.8.5",
"tokenthrottle": "^1.3.0",
"undici": "^5.5.1",
"winston": "^3.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@discordjs/docgen": "^0.11.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"engines": {
"node": ">=16.6.0"
}
}