-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "maykbot-ts",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn ./src/index.ts",
"build": "tsc",
"start": "node .",
"check": "tsc -w --noEmit",
"format": "prettier --write ./src",
"lint": "eslint ./src --ext .ts",
"prod": "tsc; node ."
},
"keywords": [],
"author": "libreMayk",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"axios": "^0.27.2",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"filehound": "^1.17.6",
"mathjs": "^10.6.4",
"node-html-parser": "^5.3.3",
"pino": "^8.1.0",
"pino-pretty": "^8.1.0",
"pretty-print-ms": "^1.0.5",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/xml2json": "^0.11.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0"
}
}