-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
117 lines (117 loc) · 3.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "skycrypt",
"version": "1.0.0",
"description": "Player stats for Hypixel SkyBlock",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16",
"npm": "forbidden, use pnpm",
"pnpm": ">=7",
"yarn": "forbidden, use pnpm"
},
"packageManager": "[email protected]",
"scripts": {
"start": "node index",
"dev": "pnpm i && concurrently -r \"pnpm nodemon\" \"pnpm scss:watch\" \"pnpm rollup:watch\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "node src/credentials.js && node src/scripts/prepare-cache.js",
"prestart": "pnpm scss && pnpm rollup",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"lint:ejs": "ejslint **/*.ejs",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"scss": "sass public/resources/scss:public/resources/css --style=compressed",
"scss:watch": "sass --watch public/resources/scss:public/resources/css",
"rollup": "npx rollup -c",
"rollup:watch": "npx rollup -c -w",
"nodemon": "nodemon index",
"benchmark:get-texture": "node misc/benchmarks/get-texture.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkyCryptWebsite/skyblock-stats.git"
},
"keywords": [
"hypixel",
"skyblock",
"minecraft",
"statistics",
"skycrypt"
],
"author": "boblovespi + LeaPhant + MartinNemi03 + metalcupcake5 + Shiiyu + WarpWing",
"license": "MIT",
"bugs": {
"url": "https://github.com/SkyCryptWebsite/skyblock-stats/issues"
},
"homepage": "https://github.com/SkyCryptWebsite/skyblock-stats#readme",
"dependencies": {
"apng2gif-bin": "^1.7.1",
"async-retry": "^1.3.3",
"axios": "^1.6.5",
"axios-debug-log": "^1.0.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bowser": "^2.11.0",
"canvas": "^2.11.2",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"css": "^3.0.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs-extra": "^11.2.0",
"ioredis": "^5.3.2",
"lit": "^3.1.1",
"lodash": "^4.17.21",
"micromatch": "^4.0.5",
"minecraft-data": "^3.59.3",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.44",
"mongo-sanitize": "^1.1.0",
"mongodb": "^6.3.0",
"node-fetch": "^3.3.2",
"prismarine-nbt": "^2.5.0",
"progress": "^2.0.3",
"relaxed-json": "^1.0.3",
"sharp": "^0.33.2",
"sitemap": "^7.1.1",
"skinview3d": "^3.0.1",
"skyhelper-networth": "^1.25.0",
"tippy.js": "^6.3.7",
"twemoji": "^14.0.2",
"upng-js": "^2.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"benchmark": "^2.1.4",
"concurrently": "^8.2.2",
"ejs-lint": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-wc": "^2.0.4",
"node-watch": "^0.7.4",
"nodemon": "^3.0.3",
"prettier": "3.2.4",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"sass": "^1.70.0",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.3.3"
}
}