-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "monitord",
"version": "1.0.0",
"description": "",
"author": "Abdalla Arbab",
"license": "MIT",
"keywords": [],
"type": "module",
"scripts": {
"lint": "eslint --fix",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"start": "node ./dist/index.js",
"commands": "node ./dist/registerCommands.js",
"server": "node ./src/server.js"
},
"dependencies": {
"availability-monitor": "^1.1.4",
"discord-api-types": "^0.37.11",
"discord.js": "^14.5.0",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"lowdb": "^3.0.0"
},
"devDependencies": {
"got": "^12.5.1",
"@types/lowdb": "^1.0.11",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-esnext": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"fastify": "^4.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}