-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "kenjih_bot",
"version": "1.0.0",
"description": "Kenjih Discord Bot",
"main": "build/index.js",
"scripts": {
"dev": "tsc && node .",
"format": "npx prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:typings": "eslint typings/index.d.ts",
"test": "npm run lint && npm run lint:typings && npm run test:typescript && node .",
"test:typescript": "tsc",
"build": "npm run format && tsc",
"deploycmds": "npm run build && node build/index.js --deploy-commands"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KenjihDevTeam/DiscordBot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KenjihDevTeam/DiscordBot/issues"
},
"homepage": "https://github.com/KenjihDevTeam/DiscordBot#readme",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.2.0",
"discord.js": "^13.6.0"
},
"devDependencies": {
"@types/chart.js": "^2.9.37",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}