forked from Polytoria/CommunityBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "polytoria-community-bot",
"version": "3.0.0",
"type": "module",
"typings": "./types",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"format": "prettier --write .",
"lint": "npx eslint \"src/**\" --fix",
"deploy": "node dist/deploy-commands.js",
"dev": "npm run build && npm run start"
},
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"canvas": "^2.11.2",
"chalk": "^5.3.0",
"discord.js": "^14.14.1",
"dom-parser": "^0.1.6",
"dotenv": "^16.3.1",
"esm": "^3.2.25",
"module-alias": "^2.2.3",
"string-progressbar": "^1.0.4",
"text-table": "^0.2.0",
"timestamp-conv": "^3.0.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@types/text-table": "^0.2.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1"
}
}