-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
72 lines (72 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
68
69
70
71
72
{
"name": "@yappybots/github",
"version": "3.0.0",
"description": "A GitHub repo monitor bot for Discord",
"main": "lib/index.js",
"private": true,
"scripts": {
"start": "node lib/index.js",
"lint": "prettier --write lib db",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"url": "https://github.com/YappyBots/YappyGitHub",
"type": "git"
},
"author": "David Sevilla Martin (https://dsevilla.dev)",
"license": "MIT",
"dependencies": {
"@octokit/auth-app": "^6.0.2",
"@octokit/rest": "^20.0.2",
"@sentry/node": "^8.38.0",
"@YappyBots/addons": "github:YappyBots/yappy-addons#1107d5d",
"better-sqlite3": "^9.2.2",
"body-parser": "^1.20.2",
"bookshelf": "^1.2.0",
"bookshelf-case-converter-plugin": "^2.0.0",
"clean-stack": "^3.0.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.4.1",
"fast-safe-stringify": "^2.1.1",
"git-rev-sync": "^3.0.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"html-entities": "^2.5.2",
"ip-cidr": "^3.1.0",
"jsondiffpatch": "^0.4.1",
"knex": "^3.1.0",
"lru-cache": "^10.1.0",
"markdown-escape": "^2.0.0",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"node-cache": "^5.1.2",
"p-queue": "^6.5.0",
"performance-now": "^2.1.0",
"pretty-error": "^4.0.0",
"redis": "^4.7.0",
"showdown": "^2.1.0",
"swag": "^0.7.0",
"turndown": "^7.2.0",
"uuid": "^9.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"prettier": "^3.3.3"
},
"overrides": {
"swag": {
"handlebars": "^4.7.7"
},
"bookshelf": {
"knex": "$knex"
}
}
}