-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "dontaddthisbot",
"type": "commonjs",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon src/main.js",
"lint": "eslint --ext js '**/*' ",
"lint:fix": "eslint --ext js '**/*' --fix",
"format": "prettier --check './**/*.{js,ts}'",
"format:fix": "prettier --write './**/*.{js,ts}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"repository": "git+https://github.com/kattah7/DontAddThisBot.git",
"keywords": [],
"author": "Kattah",
"license": "ISC",
"bugs": {
"url": "https://github.com/kattah7/DontAddThisBot/issues"
},
"homepage": "https://github.com/kattah7/DontAddThisBot#readme",
"dependencies": {
"@kararty/dank-twitch-irc": "^4.6.0",
"chalk": "4.1.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"fetch": "^1.1.0",
"fs": "^0.0.1-security",
"got": "^11.8.3",
"humanize-duration": "^3.27.1",
"ioredis": "^5.0.4",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.3.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-fetch": "2",
"pg": "^8.8.0",
"prom-client": "14.0.1",
"reconnecting-websocket": "^4.4.0",
"twitter-api-v2": "^1.12.0",
"winston": "3.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}