-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "@transplace/moderation-bot",
"version": "1.0.0",
"description": "a moderation bot for transplace",
"main": "dist/main",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc && tsc-alias",
"start": "node dist/main",
"watch": "tsc -w --sourceMap & chokidar \"**/*.js\" -c \"tsc-alias\"",
"lint": "eslint .",
"lint-fix": "eslint ."
},
"keywords": [],
"author": "heshiitou",
"contributors": [
"Minion3665 <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/common-tags": "^1.8.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chokidar-cli": "^3.0.0",
"common-tags": "^1.8.2",
"eslint": "^8.43.0",
"rimraf": "^5.0.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.1.3"
},
"dependencies": {
"ansi-styles": "^6.2.1",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"discord.js": "^14.14.1",
"lodash": "^4.17.21",
"mongodb": "^5.6.0",
"supports-color": "^9.3.1"
}
}