-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "@transplace/level-bot",
"version": "1.0.0",
"description": "a level 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": "Cleover <[email protected]>",
"contributors": [
"Minion3665 <[email protected]>",
"heshiitou"
],
"license": "MIT",
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/common-tags": "^1.8.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chokidar-cli": "^3.0.0",
"common-tags": "^1.8.2",
"eslint": "^8.19.0",
"rimraf": "^3.0.2",
"tsc-alias": "^1.6.9",
"typescript": "^4.6.3"
},
"dependencies": {
"@discordjs/builders": "^0.13.0",
"@discordjs/rest": "^0.4.1",
"ansi-styles": "^6.1.0",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"discord-api-types": "^0.32.0",
"discord.js": "13.14.0",
"lodash": "^4.17.21",
"mongodb": "^4.5.0",
"supports-color": "^9.2.3"
}
}