This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "krlist-stats",
"version": "2.3.1",
"description": "Discord Bot that shows Koreanlist stats",
"private": true,
"main": "dist/index.js",
"imports": {
"#utils/*": "./dist/lib/utils/*.js",
"#lib/*": "./dist/lib/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node .",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,yml}\"",
"build": "tsc",
"build:check": "tsc --noEmit --incremental false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/despenser08/KRList-Stats.git"
},
"author": "despenser08",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/despenser08/KRList-Stats/issues"
},
"homepage": "https://github.com/despenser08/KRList-Stats#readme",
"dependencies": {
"@discordjs/builders": "^0.16.0",
"@sapphire/ts-config": "^3.3.4",
"@sapphire/utilities": "^3.7.0",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@typegoose/typegoose": "^9.10.1",
"axios": "^0.27.2",
"chart.js": "^3.8.0",
"chartjs-node-canvas": "^4.1.6",
"chartjs-plugin-datalabels": "^2.0.0",
"discord-akairo": "discord-akairo/discord-akairo",
"discord.js": "^13.4.0",
"djs-interaction-util": "^0.2.8",
"dokdo": "^0.5.1",
"marked": "^4.0.18",
"moment-timezone": "^0.5.42",
"mongoose": "^6.4.5",
"node-schedule": "^2.1.1",
"sharp": "^0.30.7",
"table": "^6.8.0",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/marked": "^4.0.3",
"@types/node": "^16.11.45",
"@types/node-schedule": "^2.1.0",
"@types/sharp": "^0.30.4",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.6.0",
"typescript": "^4.7.4"
}
}