forked from SkyCryptWebsite/SkyCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.17 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
{
"name": "skycrypt",
"version": "1.0.0",
"description": "Player stats for Hypixel SkyBlock",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index",
"dev": "concurrently -r \"npm run nodemon\" \"npm run scss:watch\" \"npm run rollup:watch\"",
"postinstall": "node src/credentials.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"lint:ejs": "ejslint **/*.ejs",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"prestart": "npm run scss && npm run rollup",
"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"
},
"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": "^0.21.4",
"axios-debug-log": "^0.8.4",
"body-parser": "^1.19.0",
"bowser": "^2.11.0",
"canvas": "^2.8.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"css": "^3.0.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fs-extra": "^10.0.0",
"ioredis": "^4.28.0",
"lit": "^2.0.2",
"lodash": "^4.17.20",
"micromatch": "^4.0.4",
"minecraft-data": "^2.96.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.31",
"mongo-sanitize": "^1.1.0",
"mongodb": "^4.2.0",
"prismarine-nbt": "^2.0.0",
"progress": "^2.0.3",
"relaxed-json": "^1.0.3",
"sharp": "^0.29.3",
"sitemap": "^7.0.0",
"skinview3d": "^2.1.0",
"tippy.js": "^6.3.7",
"twemoji": "^13.1.0",
"upng-js": "^2.1.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^6.4.0",
"ejs-lint": "^1.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-wc": "^1.3.2",
"node-watch": "^0.7.2",
"nodemon": "^2.0.15",
"prettier": "2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.43.4",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.4.4"
}
}