-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.27 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "steve",
"version": "3.4.0",
"main": "dist/index.js",
"author": "Ben",
"license": "MIT",
"homepage": "https://github.com/BenSegal855/Steve-V3",
"engines": {
"node": "20.*"
},
"dependencies": {
"@discordjs/collection": "2.0.0",
"@octokit/rest": "20.1.2",
"@sapphire/decorators": "6.1.1",
"@sapphire/discord-utilities": "3.2.2",
"@sapphire/discord.js-utilities": "7.1.6",
"@sapphire/fetch": "2.4.2",
"@sapphire/framework": "^4.7.2",
"@sapphire/pieces": "3.10.0",
"@sapphire/plugin-editable-commands": "3.1.0",
"@sapphire/plugin-logger": "3.0.7",
"@sapphire/plugin-subcommands": "^5.0.0",
"@sapphire/stopwatch": "1.5.2",
"@sapphire/time-utilities": "1.7.14",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "3.18.2",
"@skyra/env-utilities": "^1.2.1",
"axios": "1.8.4",
"canvas": "2.11.2",
"chart.js": "3.9.1",
"chartjs-node-canvas": "4.1.6",
"chartjs-plugin-datalabels": "2.2.0",
"colorette": "2.0.20",
"common-tags": "1.8.2",
"date-and-time": "^3.1.1",
"discord.js": "^14.18.0",
"luxon": "^3.5.0",
"module-alias": "2.3.4",
"mongodb": "^6.13.0",
"node-cron": "3.0.3",
"node-ical": "^0.20.1",
"pdf2json": "^3.0.3",
"pretty-ms": "7.0.1",
"reflect-metadata": "0.2.2"
},
"_moduleAliases": {
"@root": "dist",
"@lib": "dist/lib"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.0",
"@types/common-tags": "1.8.4",
"@types/luxon": "^3.4.2",
"@types/node": "20.19.39",
"@types/node-cron": "3.0.11",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-plugin-deprecation": "1.5.0",
"npm-run-all": "4.1.5",
"rimraf": "4.4.1",
"tsc-watch": "6.3.1",
"tslib": "2.8.1",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsc --noEmit false",
"build:clean": "run-s clean build",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build:clean start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"lint:fix": "eslint src --ext .ts --fix",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist",
"clear": "run-s clean",
"clean:purge": "rimraf node_modules dist yarn.lock package-lock.json",
"updeps": "yarn clean:purge && yarn install"
},
"packageManager": "yarn@3.8.7"
}