forked from ComparatorCraftSMP/observer-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "observer-bot-ts",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"watch": "tsc -w",
"start": "tsc && node dist/index.js",
"build": "tsc",
"reg-cmds": "tsc && node dist/src/regCmds.js",
"delete-cmds": "tsc && node dist/src/utils/deleteCmds.js",
"reg-guild-cmds": "tsc && node dist/src/utils/regGuildCmds.js",
"delete-guild-cmds": "tsc && node dist/src/utils/deleteGuildCmds.js",
"dev": "tsc && nodemon dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@keyv/mysql": "^1.6.1",
"@keyv/sqlite": "^3.6.4",
"@types/node": "^18.14.0",
"basic-sftp": "^0.1.1",
"cross-fetch": "^3.1.5",
"discord-api-types": "^0.37.34",
"discord-html-transcripts": "^3.1.3",
"discord.js": "^14.8.0",
"dotenv": "^10.0.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"keyv": "^4.5.2",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"node-fetch": "^3.2.10",
"nodemon": "^2.0.20",
"pagination.djs": "^4.0.9",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node-cron": "^3.0.7"
}
}