-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 980 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 980 Bytes
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
{
"name": "hatewatcher",
"version": "1.0.0",
"description": "A Discord bot that monitors League of Legends players and notifies when they lose ranked games",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^1.7.0",
"canvas": "^2.11.2",
"cdragon-dd": "^2.0.8",
"discord.js": "^14.15.2",
"dotenv": "^16.4.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"rimraf": "^5.0.10",
"typescript": "^5.3.3"
}
}