This repository was archived by the owner on Aug 23, 2022. It is now read-only.
forked from typicalbot/typicalbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.93 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.93 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "typicalbot",
"version": "4.0.1",
"description": "TypicalBot is far from typical. It's stable, lightning fast, and easy to use— TypicalBot will seamlessly help you moderate your server and provide entertainment for its members, no problem at all!",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"private": true,
"scripts": {
"build": "tsc",
"build:clean": "git clean -d -x -e node_modules -e .env -f && tsc",
"build:watch": "tsc --watch",
"build:database": "node bin/setup.js",
"build:instance": "tsc && node bin/pm2.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"start": "tsc && node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicalbot/typicalbot.git"
},
"keywords": [
"discordjs",
"javascript",
"bot",
"discord",
"typicalbot",
"discord-bot",
"discordapp"
],
"bugs": {
"url": "https://github.com/typicalbot/typicalbot/issues"
},
"homepage": "https://github.com/typicalbot/typicalbot#readme",
"dependencies": {
"@sentry/node": "^6.4.1",
"@sentry/integrations": "^6.4.1",
"discord.js": "12.5.3",
"dotenv": "^10.0.0",
"fs": "0.0.2",
"i18next": "^20.3.0",
"i18next-node-fs-backend": "^2.1.3",
"klaw": "^3.0.0",
"mathjs": "^9.4.0",
"moment": "^2.29.1",
"mongodb": "^3.6.8",
"node-fetch": "^2.6.1",
"pm2": "^4.5.6",
"tslib": "^2.2.0",
"veza": "^1.1.0",
"vm2": "^3.9.3",
"winston": "^3.3.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^5.0.4",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/i18next-node-fs-backend": "^2.1.0",
"@types/klaw": "^3.0.1",
"@types/mathjs": "^9.3.1",
"@types/mongodb": "^3.6.16",
"@types/node": "^14.17.0",
"@types/node-fetch": "^2.5.10",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=14"
}
}