-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "@YappyBots/GitLab",
"version": "1.9.1",
"description": "A GitLab repo monitor bot for Discord",
"main": "lib/index.js",
"private": true,
"scripts": {
"start": "node lib/index.js",
"lint": "prettier --single-quote --trailing-comma es5 --print-width 150 --tab-width 4 --write lib db/migrations",
"docs": "docgen --source lib --jsdoc .jsdoc.json --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source lib --jsdoc .jsdoc.json --custom docs/index.yml",
"db:migrate": "knex migrate:latest"
},
"repository": {
"url": "https://github.com/YappyBots/YappyGitLab",
"type": "git"
},
"author": "David Sevilla Martin <[email protected]>",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.10.0",
"@YappyBots/addons": "github:YappyBots/yappy-addons#34404f8",
"body-parser": "^1.19.1",
"bookshelf": "^1.2.0",
"chalk": "^4.0.0",
"clean-stack": "^3.0.0",
"cookie-parser": "^1.4.6",
"discord.js": "^12.5.3",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"got": "^11.8.6",
"hbs": "^4.2.0",
"jsondiffpatch": "^0.4.1",
"knex": "^2.5.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"p-queue": "^6.3.0",
"parse-github-url": "^1.0.2",
"pretty-error": "^4.0.0",
"punycode": "^2.1.1",
"snekfetch": "^4.0.4",
"sqlite3": "^5.1.6",
"winston": "^2.4.4"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"overrides": {
"swag": {
"handlebars": "^4.7.7"
},
"bookshelf": {
"knex": "$knex"
},
"@YappyBots/addons": {
"got": "$got"
}
}
}