2021-11-11 10:02:25 -07:00
|
|
|
{
|
2022-05-31 20:41:15 -06:00
|
|
|
"name": "backend",
|
2021-11-11 10:02:25 -07:00
|
|
|
"main": "./index.js",
|
|
|
|
"private": true,
|
2022-02-26 19:07:39 -07:00
|
|
|
"type": "module",
|
2021-11-11 10:02:25 -07:00
|
|
|
"scripts": {
|
2023-07-24 01:57:15 -06:00
|
|
|
"start": "node ./built/index.js",
|
|
|
|
"start:test": "NODE_ENV=test node ./built/index.js",
|
2023-09-26 13:38:20 -06:00
|
|
|
"migrate": "yarn migrate:typeorm",
|
2023-06-02 22:27:00 -06:00
|
|
|
"migrate:typeorm": "typeorm migration:run -d ormconfig.js",
|
2023-09-26 13:38:20 -06:00
|
|
|
"revertmigration": "yarn revertmigration:typeorm",
|
2023-06-02 22:27:00 -06:00
|
|
|
"revertmigration:typeorm": "typeorm migration:revert -d ormconfig.js",
|
2023-02-23 22:09:17 -07:00
|
|
|
"check:connect": "node ./check_connect.js",
|
2023-07-24 01:57:15 -06:00
|
|
|
"build": "swc src -d built -D",
|
2023-08-30 08:54:42 -06:00
|
|
|
"build:debug": "swc src -d built -s -D",
|
2023-07-24 01:57:15 -06:00
|
|
|
"watch": "swc src -d built -D -w",
|
|
|
|
"lint": "rome check --apply *",
|
2022-05-14 01:10:20 -06:00
|
|
|
"mocha": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha",
|
2023-07-24 01:57:15 -06:00
|
|
|
"test": "mocha",
|
|
|
|
"format": "rome format * --write"
|
2021-11-11 10:02:25 -07:00
|
|
|
},
|
2022-07-13 06:00:59 -06:00
|
|
|
"optionalDependencies": {
|
2023-01-13 06:53:27 -07:00
|
|
|
"@swc/core-android-arm64": "1.3.11",
|
2022-10-27 15:25:31 -06:00
|
|
|
"@tensorflow/tfjs-node": "3.21.1"
|
2022-07-13 06:00:59 -06:00
|
|
|
},
|
2021-11-11 10:02:25 -07:00
|
|
|
"dependencies": {
|
2023-07-10 22:29:01 -06:00
|
|
|
"@bull-board/api": "5.6.0",
|
|
|
|
"@bull-board/koa": "5.6.0",
|
|
|
|
"@bull-board/ui": "5.6.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"@discordapp/twemoji": "14.1.2",
|
2022-05-31 01:13:41 -06:00
|
|
|
"@elastic/elasticsearch": "7.17.0",
|
2022-11-04 14:20:18 -06:00
|
|
|
"@koa/cors": "3.4.3",
|
2023-06-05 15:54:43 -06:00
|
|
|
"@koa/multer": "3.0.2",
|
2023-01-10 15:14:40 -07:00
|
|
|
"@koa/router": "9.0.1",
|
2023-09-26 09:18:00 -06:00
|
|
|
"@paralleldrive/cuid2": "^2.2.2",
|
2022-08-13 03:45:29 -06:00
|
|
|
"@peertube/http-signature": "1.7.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@redocly/openapi-core": "1.0.0-beta.131",
|
2022-05-13 23:57:51 -06:00
|
|
|
"@sinonjs/fake-timers": "9.1.2",
|
2021-11-11 10:02:25 -07:00
|
|
|
"@syuilo/aiscript": "0.11.1",
|
2023-01-03 16:43:52 -07:00
|
|
|
"@tensorflow/tfjs": "^4.2.0",
|
2023-07-27 10:07:25 -06:00
|
|
|
"@tensorflow/tfjs-backend-webgl": "^4.2.0",
|
|
|
|
"@tensorflow/tfjs-core": "^4.2.0",
|
2023-05-09 18:19:15 -06:00
|
|
|
"adm-zip": "^0.5.10",
|
2023-06-05 15:54:43 -06:00
|
|
|
"ajv": "8.12.0",
|
2022-04-22 21:29:26 -06:00
|
|
|
"archiver": "5.3.1",
|
2023-03-30 20:19:09 -06:00
|
|
|
"argon2": "^0.30.3",
|
2023-02-09 15:21:50 -07:00
|
|
|
"autolinker": "4.0.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"autwh": "0.1.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"aws-sdk": "2.1413.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"axios": "^1.4.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"bcryptjs": "2.4.3",
|
2023-07-13 20:06:57 -06:00
|
|
|
"blurhash": "2.0.5",
|
2023-05-31 13:06:26 -06:00
|
|
|
"bull": "4.10.4",
|
2022-11-18 18:20:34 -07:00
|
|
|
"cacheable-lookup": "7.0.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"cbor": "8.1.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"chalk": "5.3.0",
|
2022-03-07 07:51:34 -07:00
|
|
|
"chalk-template": "0.4.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"chokidar": "^3.5.3",
|
2021-11-11 10:02:25 -07:00
|
|
|
"cli-highlight": "2.1.11",
|
2022-02-26 19:07:39 -07:00
|
|
|
"color-convert": "2.0.1",
|
2022-01-21 01:04:48 -07:00
|
|
|
"content-disposition": "0.5.4",
|
2023-06-03 01:41:30 -06:00
|
|
|
"date-fns": "2.30.0",
|
2023-07-16 04:24:37 -06:00
|
|
|
"decompress": "^4.2.1",
|
2022-01-21 01:04:48 -07:00
|
|
|
"deep-email-validator": "0.1.21",
|
2021-11-11 10:02:25 -07:00
|
|
|
"escape-regexp": "0.0.1",
|
2023-09-05 13:57:30 -06:00
|
|
|
"fast-xml-parser": "^4.2.7",
|
2021-11-11 10:02:25 -07:00
|
|
|
"feed": "4.2.2",
|
2022-08-13 03:45:29 -06:00
|
|
|
"file-type": "17.1.6",
|
2021-11-11 10:02:25 -07:00
|
|
|
"fluent-ffmpeg": "2.1.2",
|
2022-11-16 03:08:33 -07:00
|
|
|
"got": "12.5.3",
|
2023-07-15 23:41:57 -06:00
|
|
|
"gunzip-maybe": "^1.4.2",
|
2021-11-11 10:02:25 -07:00
|
|
|
"hpagent": "0.1.2",
|
2023-07-24 01:57:15 -06:00
|
|
|
"iceshrimp-js": "workspace:*",
|
2023-05-29 20:32:33 -06:00
|
|
|
"ioredis": "5.3.2",
|
2023-07-10 22:29:01 -06:00
|
|
|
"ip-cidr": "3.1.0",
|
2022-01-21 01:04:48 -07:00
|
|
|
"is-svg": "4.3.2",
|
2023-06-16 15:09:42 -06:00
|
|
|
"js-yaml": "4.1.0",
|
2022-12-18 12:03:08 -07:00
|
|
|
"jsdom": "20.0.3",
|
2023-07-16 03:57:38 -06:00
|
|
|
"json5": "2.2.3",
|
2023-06-05 15:54:43 -06:00
|
|
|
"jsonld": "8.2.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"jsrsasign": "10.8.6",
|
|
|
|
"koa": "2.14.2",
|
2023-03-30 19:58:28 -06:00
|
|
|
"koa-body": "^6.0.1",
|
2023-07-10 22:29:01 -06:00
|
|
|
"koa-bodyparser": "4.4.1",
|
2023-04-27 17:25:13 -06:00
|
|
|
"koa-favicon": "2.1.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"koa-json-body": "5.3.0",
|
|
|
|
"koa-logger": "3.2.1",
|
|
|
|
"koa-mount": "4.0.0",
|
2023-04-27 17:32:37 -06:00
|
|
|
"koa-remove-trailing-slashes": "2.0.3",
|
2021-11-11 10:02:25 -07:00
|
|
|
"koa-send": "5.0.1",
|
|
|
|
"koa-slow": "2.1.0",
|
|
|
|
"koa-views": "7.0.2",
|
2023-07-06 15:22:15 -06:00
|
|
|
"megalodon": "workspace:*",
|
2023-06-05 15:54:43 -06:00
|
|
|
"meilisearch": "0.33.0",
|
2023-05-21 22:39:20 -06:00
|
|
|
"mfm-js": "0.23.3",
|
2022-03-19 04:22:58 -06:00
|
|
|
"mime-types": "2.1.35",
|
2023-07-06 15:22:15 -06:00
|
|
|
"msgpackr": "1.9.5",
|
2022-08-17 16:57:16 -06:00
|
|
|
"multer": "1.4.4-lts.1",
|
2021-11-11 10:02:25 -07:00
|
|
|
"nested-property": "4.0.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"node-fetch": "3.3.1",
|
|
|
|
"nodemailer": "6.9.3",
|
2022-09-07 17:23:33 -06:00
|
|
|
"nsfwjs": "2.4.2",
|
2022-11-18 18:20:34 -07:00
|
|
|
"oauth": "^0.10.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"os-utils": "0.0.14",
|
2023-07-10 22:29:01 -06:00
|
|
|
"otpauth": "^9.1.3",
|
2022-12-18 12:03:08 -07:00
|
|
|
"parse5": "7.1.2",
|
2023-07-10 22:29:01 -06:00
|
|
|
"pg": "8.11.1",
|
2022-08-13 03:45:29 -06:00
|
|
|
"private-ip": "2.3.4",
|
2022-02-03 05:09:15 -07:00
|
|
|
"probe-image-size": "7.2.3",
|
2021-11-11 10:02:25 -07:00
|
|
|
"promise-limit": "2.7.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"punycode": "2.3.0",
|
2023-01-03 10:12:26 -07:00
|
|
|
"pureimage": "0.3.15",
|
2023-06-05 15:54:43 -06:00
|
|
|
"qrcode": "1.5.3",
|
|
|
|
"qs": "6.11.2",
|
2021-11-11 10:02:25 -07:00
|
|
|
"random-seed": "0.3.0",
|
|
|
|
"ratelimiter": "3.4.1",
|
2023-07-10 22:29:01 -06:00
|
|
|
"re2": "1.19.1",
|
2023-06-05 16:08:35 -06:00
|
|
|
"redis-lock": "0.1.4",
|
2023-06-30 22:50:46 -06:00
|
|
|
"redis-semaphore": "5.3.1",
|
2021-11-11 10:02:25 -07:00
|
|
|
"reflect-metadata": "0.1.13",
|
|
|
|
"rename": "1.0.4",
|
|
|
|
"rndstr": "1.0.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"rss-parser": "3.13.0",
|
|
|
|
"sanitize-html": "2.10.0",
|
2023-01-12 21:18:16 -07:00
|
|
|
"seedrandom": "^3.0.5",
|
2023-07-10 22:29:01 -06:00
|
|
|
"semver": "7.5.4",
|
2023-06-05 15:54:43 -06:00
|
|
|
"sharp": "0.32.1",
|
2023-03-19 02:26:47 -06:00
|
|
|
"sonic-channel": "^1.3.1",
|
2021-11-11 10:02:25 -07:00
|
|
|
"stringz": "2.1.0",
|
2023-04-26 15:19:55 -06:00
|
|
|
"summaly": "2.7.0",
|
2021-11-11 10:02:25 -07:00
|
|
|
"syslog-pro": "1.0.0",
|
2023-06-05 15:54:43 -06:00
|
|
|
"systeminformation": "5.17.17",
|
2023-07-15 23:41:57 -06:00
|
|
|
"tar-stream": "^3.1.6",
|
2022-10-27 16:01:38 -06:00
|
|
|
"tesseract.js": "^3.0.3",
|
2023-01-03 10:12:26 -07:00
|
|
|
"tinycolor2": "1.5.2",
|
2021-11-11 10:02:25 -07:00
|
|
|
"tmp": "0.2.1",
|
2022-03-19 04:22:58 -06:00
|
|
|
"twemoji-parser": "14.0.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"typeorm": "0.3.17",
|
2021-11-11 10:02:25 -07:00
|
|
|
"ulid": "2.3.0",
|
2022-09-10 04:14:07 -06:00
|
|
|
"uuid": "9.0.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"web-push": "3.6.3",
|
2021-11-11 10:02:25 -07:00
|
|
|
"websocket": "1.0.34",
|
2023-06-16 15:09:42 -06:00
|
|
|
"xev": "3.0.2"
|
2021-11-11 10:02:25 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-13 10:43:13 -06:00
|
|
|
"@swc/cli": "^0.1.62",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@swc/core": "^1.3.68",
|
2023-05-09 18:19:15 -06:00
|
|
|
"@types/adm-zip": "^0.5.0",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/bcryptjs": "2.4.2",
|
|
|
|
"@types/cbor": "6.0.0",
|
|
|
|
"@types/escape-regexp": "0.0.1",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@types/fluent-ffmpeg": "2.1.21",
|
2023-06-16 15:09:42 -06:00
|
|
|
"@types/js-yaml": "4.0.5",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@types/jsdom": "21.1.1",
|
|
|
|
"@types/jsonld": "1.5.9",
|
|
|
|
"@types/jsrsasign": "10.5.8",
|
|
|
|
"@types/koa": "2.13.6",
|
2022-11-09 16:55:15 -07:00
|
|
|
"@types/koa-bodyparser": "4.3.10",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/koa-cors": "0.0.2",
|
|
|
|
"@types/koa-favicon": "2.0.21",
|
|
|
|
"@types/koa-logger": "3.1.2",
|
2022-11-04 14:20:18 -06:00
|
|
|
"@types/koa-mount": "4.0.2",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/koa-send": "4.1.3",
|
|
|
|
"@types/koa-views": "7.0.0",
|
2022-05-30 18:31:24 -06:00
|
|
|
"@types/koa__cors": "3.3.0",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/koa__multer": "2.0.4",
|
|
|
|
"@types/koa__router": "8.0.11",
|
2022-04-22 21:29:26 -06:00
|
|
|
"@types/mocha": "9.1.1",
|
2023-01-03 16:43:52 -07:00
|
|
|
"@types/node": "18.11.18",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/node-fetch": "3.0.3",
|
2023-06-05 15:54:43 -06:00
|
|
|
"@types/nodemailer": "6.4.8",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/oauth": "0.9.1",
|
2023-05-19 20:26:13 -06:00
|
|
|
"@types/probe-image-size": "^7.2.0",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/pug": "2.0.6",
|
|
|
|
"@types/punycode": "2.1.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@types/qrcode": "1.5.1",
|
2023-02-28 09:23:04 -07:00
|
|
|
"@types/qs": "6.9.7",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/random-seed": "0.3.3",
|
2022-10-27 15:25:31 -06:00
|
|
|
"@types/ratelimiter": "3.4.4",
|
2023-05-29 20:34:32 -06:00
|
|
|
"@types/redis": "4.0.11",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/rename": "1.0.4",
|
2023-06-05 15:54:43 -06:00
|
|
|
"@types/sanitize-html": "2.9.0",
|
|
|
|
"@types/semver": "7.5.0",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/sinonjs__fake-timers": "8.1.2",
|
|
|
|
"@types/tinycolor2": "1.4.3",
|
|
|
|
"@types/tmp": "0.2.3",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@types/uuid": "9.0.2",
|
2022-04-15 10:28:59 -06:00
|
|
|
"@types/web-push": "3.3.2",
|
|
|
|
"@types/websocket": "1.0.5",
|
2023-07-10 22:29:01 -06:00
|
|
|
"@types/ws": "8.5.5",
|
2021-11-18 22:48:59 -07:00
|
|
|
"cross-env": "7.0.3",
|
2023-07-10 22:29:01 -06:00
|
|
|
"eslint": "^8.44.0",
|
2022-06-30 09:21:25 -06:00
|
|
|
"execa": "6.1.0",
|
2023-02-03 22:38:40 -07:00
|
|
|
"json5-loader": "4.0.1",
|
|
|
|
"mocha": "10.2.0",
|
|
|
|
"pug": "3.0.2",
|
|
|
|
"strict-event-emitter-types": "2.0.0",
|
2023-01-12 21:18:16 -07:00
|
|
|
"swc-loader": "^0.2.3",
|
2023-07-10 22:29:01 -06:00
|
|
|
"ts-loader": "9.4.4",
|
2023-02-03 22:38:40 -07:00
|
|
|
"ts-node": "10.9.1",
|
2023-06-05 15:54:43 -06:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2023-07-10 22:29:01 -06:00
|
|
|
"typescript": "5.1.6",
|
|
|
|
"webpack": "^5.88.1",
|
2023-06-05 15:54:43 -06:00
|
|
|
"ws": "8.13.0"
|
2021-11-11 10:02:25 -07:00
|
|
|
}
|
|
|
|
}
|