This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.29 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
73
{
"name": "confebot",
"version": "2.1.0",
"description": "Bot de la Confederación de Fandom Hispano",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.build.json --listEmittedFiles",
"dev": "rimraf dist/ && tsc-watch --project tsconfig.build.json --noClear --onSuccess \"node --enable-source-maps ./dist/index.js\"",
"lint": "eslint src/ --ext ts",
"lint:fix": "eslint src/ --ext ts --fix",
"start": "yarn node --enable-source-maps ./dist/index.js",
"test": "mocha dist/test",
"prepare": "husky install"
},
"author": "TheNozomi <[email protected]>",
"license": "MIT",
"dependencies": {
"@honeybadger-io/js": "^3.2.8",
"@sapphire/decorators": "^4.3.7",
"@sapphire/discord.js-utilities": "^4.11.3",
"@sapphire/framework": "^3.0.0-next.961e0bf.0",
"@sapphire/pieces": "^3.3.4",
"@sapphire/plugin-api": "^3.2.2",
"@sapphire/plugin-logger": "^2.2.2",
"@sapphire/plugin-scheduled-tasks": "^2.3.4",
"@sapphire/stopwatch": "^1.4.1",
"axios": "^0.26.0",
"bull": "^4.6.2",
"date-fns": "^2.28.0",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"fs-extra": "^10.0.1",
"mongodb": "^4.4.0",
"node-cron": "^3.0.0",
"puppeteer-core": "^13.4.0",
"string-similarity-js": "^2.1.4",
"ts-dotenv": "^0.8.3",
"tslib": "^2.3.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^5.0.8",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.7",
"@sapphire/ts-config": "^3.3.1",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.26",
"@types/node-cron": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "~8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"tsc-watch": "^4.6.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}