-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.11 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
{
"name": "skystats",
"version": "2.0.0b1",
"description": "A Hypixel Skyblock Metrics Bot For Discord.",
"changelog": "SkyStats Nightly\nCreated an Update script and function (same as the skyhelper api for now!)",
"main": "index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prod": "pm2 start ecosystem.config.json",
"update": "node ./start/update_script.js",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"*.{ts,js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkyStats-Development/SkyStats.git"
},
"bugs": {
"url": "https://github.com/SkyStats-Development/SkyStats/issues"
},
"homepage": "https://skyats.lol/",
"author": "Axle && SkyStats Development Team",
"license": "CUSTOM",
"type": "module",
"dependencies": {
"@discordjs/builders": "^1.11.2",
"@discordjs/rest": "^2.5.1",
"@eslint/eslintrc": "^3.3.1",
"@napi-rs/canvas": "^0.1.71",
"ajv": "^8.17.1",
"async-retry": "^1.3.3",
"axios": "^1.10.0",
"canvas": "3.1.0",
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.12",
"cheerio-select": "2.1.0",
"common-tags": "^1.8.2",
"cors": "^2.8.5",
"discord-api-types": "^0.37.120",
"discord.js": "^14.20.0",
"dotenv": "^16.5.0",
"hypixel-api-reborn": "^11.3.7",
"ioredis": "^5.6.1",
"lilyweight": "^2.7.2",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"mongodb": "^6.17.0",
"ms": "^2.1.3",
"ping": "^0.4.4",
"prismarine-nbt": "^2.7.0",
"rss-parser": "^3.13.0",
"senitherweight": "^1.0.8",
"skyhelper-networth": "^1.27.3",
"zod": "^3.25.74"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/ioredis": "^5.0.0",
"@types/lodash": "^4.17.17",
"@types/node": "^20.19.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^3.2.0",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}