-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.62 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
{
"name": "uvweb",
"version": "1.0.0",
"description": "Dynmap extensions for UltraVanilla",
"scripts": {
"start": "node lib/server.js",
"test": "node lib/test.js",
"ts": "tsc --declaration",
"watch": "run-p watch:ts watch:bundle",
"watch:ts": "tsc -w --declaration",
"watch:bundle": "rollup -c rollup.config.js -w",
"bundle": "rollup -c rollup.config.js",
"grab-vendor-assets": "node build.js",
"build": "npm run ts && npm run bundle && npm run grab-vendor-assets",
"pack-package-lock": "node -e \"try { fs.writeFileSync('./package-lock.json', JSON.stringify(require('./package-lock.json')))} catch(err) {}\"",
"prepublish": "npm run build"
},
"author": "lordpipe",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@babel/preset-env": "^7.19.4",
"@ltd/j-toml": "^1.35.2",
"@types/node-schedule": "^2.1.0",
"ajv": "^8.11.0",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ioredis": "^5.2.3",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-bodyparser": "^4.3.0",
"koa-easy-ws": "^2.1.0",
"koa-mount": "^4.0.0",
"koa-proxies": "^0.12.2",
"koa-redis": "^4.0.1",
"koa-router": "^12.0.0",
"koa-session": "^6.2.0",
"koa-session-memory": "^1.0.4",
"koa-static": "^5.0.0",
"lerp-array": "^1.1.1",
"level": "^7.0.1",
"level-ttl": "^3.1.1",
"local-storage-fallback": "^4.1.2",
"lru-cache": "^7.14.0",
"mozjpeg": "^7.1.1",
"mysql": "^2.18.1",
"node-fetch": "^3.2.10",
"node-schedule": "^2.1.0",
"objection": "github:vincit/objection.js#dbb20aebaac2059149ec18386283b3cce4a3d7f0",
"systemjs": "^6.13.0",
"typed-emitter": "^2.1.0",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/cheerio": "^0.22.31",
"@types/codemirror": "5.60.5",
"@types/ioredis": "^4.28.10",
"@types/jquery": "^3.5.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.8",
"@types/koa-mount": "^4.0.1",
"@types/koa-proxy": "^1.0.4",
"@types/koa-redis": "^4.0.2",
"@types/koa-router": "^7.4.4",
"@types/koa-session": "^5.10.6",
"@types/koa-static": "^4.0.2",
"@types/level": "^6.0.1",
"@types/level-ttl": "^3.1.2",
"@types/lru-cache": "^7.10.9",
"@types/mozjpeg": "^5.0.0",
"@types/msgpack-lite": "^0.1.8",
"@types/mysql": "^2.15.21",
"@types/node": "^18.8.4",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@yaireo/tagify": "^4.16.4",
"codemirror": "^6.0.1",
"date-fns": "^2.29.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"get-google-fonts": "^1.2.2",
"jspanel4": "^4.16.0",
"jsx-dom": "8.0.2",
"msgpack-lite": "^0.1.26",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"reconnecting-websocket": "^4.4.0",
"rollup": "^2.79.1",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-terser": "^7.0.2",
"simple-zstd": "^1.4.0",
"typed-html": "^3.0.1",
"typescript": "^4.8.4"
}
}