2021-11-11 17:02:25 +00:00
|
|
|
{
|
2022-11-24 06:39:00 +00:00
|
|
|
"name": "backend",
|
|
|
|
"main": "./index.js",
|
2021-11-11 17:02:25 +00:00
|
|
|
"private": true,
|
2022-02-27 02:07:39 +00:00
|
|
|
"type": "module",
|
2023-07-07 23:52:51 +00:00
|
|
|
"engines": {
|
2023-12-16 05:00:27 +00:00
|
|
|
"node": ">=20.10.0"
|
2023-07-07 23:52:51 +00:00
|
|
|
},
|
2021-11-11 17:02:25 +00:00
|
|
|
"scripts": {
|
2023-11-19 04:39:25 +00:00
|
|
|
"start": "node ./built/boot/entry.js",
|
2024-01-22 09:01:54 +00:00
|
|
|
"start:test": "cross-env NODE_ENV=test node ./built/boot/entry.js",
|
2023-01-15 21:08:42 +00:00
|
|
|
"migrate": "pnpm typeorm migration:run -d ormconfig.js",
|
2023-10-23 07:42:54 +00:00
|
|
|
"revert": "pnpm typeorm migration:revert -d ormconfig.js",
|
2024-04-04 13:25:28 +00:00
|
|
|
"check:connect": "node ./scripts/check_connect.js",
|
2024-04-28 21:28:05 +00:00
|
|
|
"build": "swc src -d built -D --strip-leading-paths",
|
|
|
|
"watch:swc": "swc src -d built -D -w --strip-leading-paths",
|
2023-02-23 06:36:47 +00:00
|
|
|
"build:tsc": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
|
2024-04-04 13:25:28 +00:00
|
|
|
"watch": "node ./scripts/watch.mjs",
|
2023-12-14 11:16:02 +00:00
|
|
|
"restart": "pnpm build && pnpm start",
|
2024-05-24 12:39:40 +00:00
|
|
|
"dev": "nodemon -w src -e ts,js,mjs,cjs,json --exec \"cross-env NODE_ENV=development pnpm run restart\"",
|
2024-03-07 00:51:57 +00:00
|
|
|
"typecheck": "tsc --noEmit && tsc -p test --noEmit",
|
2023-02-17 01:57:40 +00:00
|
|
|
"eslint": "eslint --quiet \"src/**/*.ts\"",
|
|
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
2024-01-08 08:43:52 +00:00
|
|
|
"jest": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --forceExit --config jest.config.unit.cjs",
|
2024-12-18 20:35:13 +00:00
|
|
|
"jest:e2e": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve --no-experimental-require-module node_modules/jest/bin/jest.js --forceExit --config jest.config.e2e.cjs",
|
2024-01-08 08:43:52 +00:00
|
|
|
"jest-and-coverage": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --coverage --forceExit --config jest.config.unit.cjs",
|
2024-12-18 20:35:13 +00:00
|
|
|
"jest-and-coverage:e2e": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve --no-experimental-require-module node_modules/jest/bin/jest.js --coverage --forceExit --config jest.config.e2e.cjs",
|
2022-09-21 19:51:16 +00:00
|
|
|
"jest-clear": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --clearCache",
|
2023-01-15 21:08:42 +00:00
|
|
|
"test": "pnpm jest",
|
2024-12-18 20:35:13 +00:00
|
|
|
"test:e2e": "pnpm build && pnpm jest:e2e",
|
2023-11-22 08:08:56 +00:00
|
|
|
"test-and-coverage": "pnpm jest-and-coverage",
|
2024-12-18 20:35:13 +00:00
|
|
|
"test-and-coverage:e2e": "pnpm build && pnpm jest-and-coverage:e2e",
|
2024-04-04 13:25:28 +00:00
|
|
|
"generate-api-json": "pnpm build && node ./scripts/generate_api_json.js"
|
2021-11-11 17:02:25 +00:00
|
|
|
},
|
2022-07-13 12:00:59 +00:00
|
|
|
"optionalDependencies": {
|
2025-01-13 17:19:05 +00:00
|
|
|
"@swc/core-darwin-arm64": "1.10.7",
|
|
|
|
"@swc/core-darwin-x64": "1.10.7",
|
|
|
|
"@swc/core-linux-arm-gnueabihf": "1.10.7",
|
|
|
|
"@swc/core-linux-arm64-gnu": "1.10.7",
|
|
|
|
"@swc/core-linux-arm64-musl": "1.10.7",
|
|
|
|
"@swc/core-linux-x64-gnu": "1.10.7",
|
|
|
|
"@swc/core-linux-x64-musl": "1.10.7",
|
|
|
|
"@swc/core-win32-arm64-msvc": "1.10.7",
|
|
|
|
"@swc/core-win32-ia32-msvc": "1.10.7",
|
|
|
|
"@swc/core-win32-x64-msvc": "1.10.7",
|
2024-10-22 20:48:11 +00:00
|
|
|
"@tensorflow/tfjs": "4.22.0",
|
|
|
|
"@tensorflow/tfjs-node": "4.22.0",
|
2024-12-28 02:39:27 +00:00
|
|
|
"bufferutil": "4.0.9",
|
2023-07-26 13:06:00 +00:00
|
|
|
"slacc-android-arm-eabi": "0.0.10",
|
|
|
|
"slacc-android-arm64": "0.0.10",
|
|
|
|
"slacc-darwin-arm64": "0.0.10",
|
|
|
|
"slacc-darwin-universal": "0.0.10",
|
|
|
|
"slacc-darwin-x64": "0.0.10",
|
|
|
|
"slacc-freebsd-x64": "0.0.10",
|
|
|
|
"slacc-linux-arm-gnueabihf": "0.0.10",
|
|
|
|
"slacc-linux-arm64-gnu": "0.0.10",
|
|
|
|
"slacc-linux-arm64-musl": "0.0.10",
|
|
|
|
"slacc-linux-x64-gnu": "0.0.10",
|
|
|
|
"slacc-linux-x64-musl": "0.0.10",
|
|
|
|
"slacc-win32-arm64-msvc": "0.0.10",
|
|
|
|
"slacc-win32-x64-msvc": "0.0.10",
|
2024-11-05 20:21:24 +00:00
|
|
|
"utf-8-validate": "6.0.5"
|
2022-07-13 12:00:59 +00:00
|
|
|
},
|
2021-11-11 17:02:25 +00:00
|
|
|
"dependencies": {
|
2024-03-14 16:30:56 +00:00
|
|
|
"@authenio/samlify-node-xmllint": "2.0.0",
|
2025-01-16 10:46:20 +00:00
|
|
|
"@aws-sdk/client-s3": "3.729.0",
|
|
|
|
"@aws-sdk/lib-storage": "3.729.0",
|
|
|
|
"@bull-board/api": "6.6.2",
|
|
|
|
"@bull-board/fastify": "6.6.2",
|
|
|
|
"@bull-board/ui": "6.6.2",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@discordapp/twemoji": "15.1.0",
|
2024-12-18 20:35:13 +00:00
|
|
|
"@elastic/elasticsearch": "8.17.0",
|
|
|
|
"@fastify/accepts": "5.0.2",
|
2025-01-13 17:19:05 +00:00
|
|
|
"@fastify/cookie": "11.0.2",
|
|
|
|
"@fastify/cors": "10.0.2",
|
|
|
|
"@fastify/express": "4.0.2",
|
|
|
|
"@fastify/formbody": "8.0.2",
|
|
|
|
"@fastify/http-proxy": "11.0.1",
|
|
|
|
"@fastify/multipart": "9.0.2",
|
|
|
|
"@fastify/static": "8.0.4",
|
|
|
|
"@fastify/view": "10.0.2",
|
2024-02-29 02:10:03 +00:00
|
|
|
"@misskey-dev/sharp-read-bmp": "1.2.0",
|
2024-12-21 14:21:18 +00:00
|
|
|
"@misskey-dev/summaly": "github:MisskeyIO/summaly#5.1.3",
|
2024-12-18 20:35:13 +00:00
|
|
|
"@napi-rs/canvas": "0.1.65",
|
|
|
|
"@nestjs/common": "10.4.15",
|
|
|
|
"@nestjs/core": "10.4.15",
|
|
|
|
"@nestjs/testing": "10.4.15",
|
2022-08-13 09:45:29 +00:00
|
|
|
"@peertube/http-signature": "1.7.0",
|
2025-01-13 17:19:05 +00:00
|
|
|
"@simplewebauthn/server": "13.1.0",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@sinonjs/fake-timers": "11.3.1",
|
2025-01-16 10:46:20 +00:00
|
|
|
"@smithy/node-http-handler": "4.0.2",
|
2025-01-13 17:19:05 +00:00
|
|
|
"@swc/cli": "0.6.0",
|
|
|
|
"@swc/core": "1.10.7",
|
2024-04-13 16:33:56 +00:00
|
|
|
"@twemoji/parser": "15.1.1",
|
2023-02-03 05:44:09 +00:00
|
|
|
"accepts": "1.3.8",
|
2024-08-12 01:44:34 +00:00
|
|
|
"ajv": "8.17.1",
|
2024-04-28 21:28:05 +00:00
|
|
|
"archiver": "7.0.1",
|
|
|
|
"async-mutex": "0.5.0",
|
2021-11-11 17:02:25 +00:00
|
|
|
"bcryptjs": "2.4.3",
|
2023-02-20 08:04:57 +00:00
|
|
|
"blurhash": "2.0.5",
|
2024-10-22 20:48:11 +00:00
|
|
|
"body-parser": "1.20.3",
|
2025-01-14 18:24:33 +00:00
|
|
|
"bullmq": "5.34.10",
|
2023-06-25 12:13:15 +00:00
|
|
|
"cacheable-lookup": "7.0.0",
|
2024-11-08 06:10:10 +00:00
|
|
|
"cbor": "10.0.3",
|
2024-12-25 02:18:28 +00:00
|
|
|
"chalk": "5.4.1",
|
2023-07-15 07:07:30 +00:00
|
|
|
"chalk-template": "1.1.0",
|
2024-12-21 14:21:18 +00:00
|
|
|
"chokidar": "4.0.3",
|
2021-11-11 17:02:25 +00:00
|
|
|
"cli-highlight": "2.1.11",
|
2022-02-27 02:07:39 +00:00
|
|
|
"color-convert": "2.0.1",
|
2022-01-21 08:04:48 +00:00
|
|
|
"content-disposition": "0.5.4",
|
2024-10-21 01:53:59 +00:00
|
|
|
"date-fns": "4.1.0",
|
2022-01-21 08:04:48 +00:00
|
|
|
"deep-email-validator": "0.1.21",
|
2025-01-13 17:19:05 +00:00
|
|
|
"fastify": "5.2.1",
|
|
|
|
"fastify-http-errors-enhanced": "6.0.1",
|
2024-10-22 20:48:11 +00:00
|
|
|
"fastify-raw-body": "5.0.0",
|
2021-11-11 17:02:25 +00:00
|
|
|
"feed": "4.2.2",
|
2025-01-16 10:46:20 +00:00
|
|
|
"file-type": "20.0.0",
|
2024-05-22 18:43:07 +00:00
|
|
|
"fluent-ffmpeg": "2.1.3",
|
2024-10-21 01:53:59 +00:00
|
|
|
"form-data": "4.0.1",
|
2024-11-26 20:12:48 +00:00
|
|
|
"got": "14.4.5",
|
2022-11-13 02:14:07 +00:00
|
|
|
"hpagent": "1.2.0",
|
2024-02-29 02:10:03 +00:00
|
|
|
"htmlescape": "1.1.1",
|
2024-03-20 11:48:45 +00:00
|
|
|
"http-link-header": "1.1.3",
|
2024-12-21 14:21:18 +00:00
|
|
|
"ioredis": "5.4.2",
|
2024-10-22 20:48:11 +00:00
|
|
|
"ip-cidr": "4.0.2",
|
2024-04-27 12:52:37 +00:00
|
|
|
"ipaddr.js": "2.2.0",
|
2024-08-12 01:44:34 +00:00
|
|
|
"is-svg": "5.1.0",
|
2024-10-21 01:53:59 +00:00
|
|
|
"jose": "5.9.6",
|
2021-11-11 17:02:25 +00:00
|
|
|
"js-yaml": "4.1.0",
|
2025-01-13 17:19:05 +00:00
|
|
|
"jsdom": "26.0.0",
|
2023-01-02 11:02:51 +00:00
|
|
|
"json5": "2.2.3",
|
2024-12-25 02:18:28 +00:00
|
|
|
"jsonld": "8.3.3",
|
2024-02-08 18:17:31 +00:00
|
|
|
"jsrsasign": "11.1.0",
|
2025-01-14 18:24:33 +00:00
|
|
|
"meilisearch": "0.48.0",
|
2023-12-18 04:22:34 +00:00
|
|
|
"mfm-js": "0.24.0",
|
2023-12-18 04:14:58 +00:00
|
|
|
"microformats-parser": "2.0.2",
|
2022-03-19 10:22:58 +00:00
|
|
|
"mime-types": "2.1.35",
|
2023-03-30 13:01:00 +00:00
|
|
|
"misskey-js": "workspace:*",
|
2024-01-19 11:51:49 +00:00
|
|
|
"misskey-reversi": "workspace:*",
|
2021-11-12 10:47:04 +00:00
|
|
|
"ms": "3.0.0-canary.1",
|
2024-11-26 20:12:48 +00:00
|
|
|
"nanoid": "5.0.9",
|
2021-11-11 17:02:25 +00:00
|
|
|
"nested-property": "4.0.0",
|
2023-07-31 10:14:20 +00:00
|
|
|
"node-fetch": "3.3.2",
|
2024-03-16 00:01:03 +00:00
|
|
|
"node-forge": "1.3.1",
|
2024-11-05 20:21:24 +00:00
|
|
|
"nodemailer": "6.9.16",
|
2024-12-18 20:35:13 +00:00
|
|
|
"nsfwjs": "4.2.0",
|
2023-02-03 05:44:09 +00:00
|
|
|
"oauth": "0.10.0",
|
2023-10-16 11:13:05 +00:00
|
|
|
"oauth2orize": "1.12.0",
|
2023-07-27 09:51:58 +00:00
|
|
|
"oauth2orize-pkce": "0.1.2",
|
2021-11-11 17:02:25 +00:00
|
|
|
"os-utils": "0.0.14",
|
2024-12-18 20:35:13 +00:00
|
|
|
"otpauth": "9.3.6",
|
2024-11-05 20:21:24 +00:00
|
|
|
"parse5": "7.2.1",
|
|
|
|
"pg": "8.13.1",
|
2024-12-25 02:18:28 +00:00
|
|
|
"pino": "9.6.0",
|
2024-11-22 16:44:01 +00:00
|
|
|
"pino-pretty": "13.0.0",
|
2024-01-30 11:59:44 +00:00
|
|
|
"pkce-challenge": "4.1.0",
|
2022-02-03 12:09:15 +00:00
|
|
|
"probe-image-size": "7.2.3",
|
2021-11-11 17:02:25 +00:00
|
|
|
"promise-limit": "2.7.0",
|
2024-12-28 09:49:13 +00:00
|
|
|
"psl": "1.15.0",
|
2024-08-12 01:44:34 +00:00
|
|
|
"pug": "3.0.3",
|
2024-12-18 20:35:13 +00:00
|
|
|
"punycode.js": "2.3.1",
|
2024-08-12 01:44:34 +00:00
|
|
|
"qrcode": "1.5.4",
|
2021-11-11 17:02:25 +00:00
|
|
|
"random-seed": "0.3.0",
|
|
|
|
"ratelimiter": "3.4.1",
|
2024-10-21 01:53:59 +00:00
|
|
|
"re2": "1.21.4",
|
2024-03-30 07:36:20 +00:00
|
|
|
"reflect-metadata": "0.2.2",
|
2021-11-11 17:02:25 +00:00
|
|
|
"rename": "1.0.4",
|
2023-04-19 03:52:14 +00:00
|
|
|
"rss-parser": "3.13.0",
|
2023-05-02 11:52:36 +00:00
|
|
|
"rxjs": "7.8.1",
|
2024-03-14 16:30:56 +00:00
|
|
|
"samlify": "2.8.11",
|
2024-12-21 14:21:18 +00:00
|
|
|
"sanitize-html": "2.14.0",
|
2025-01-13 17:19:05 +00:00
|
|
|
"secure-json-parse": "3.0.2",
|
2024-10-21 01:53:59 +00:00
|
|
|
"sharp": "0.33.5",
|
2023-07-26 13:06:00 +00:00
|
|
|
"slacc": "0.0.10",
|
2021-11-11 17:02:25 +00:00
|
|
|
"strict-event-emitter-types": "2.0.0",
|
|
|
|
"stringz": "2.1.0",
|
2025-01-13 17:19:05 +00:00
|
|
|
"systeminformation": "5.25.11",
|
2023-02-09 00:25:31 +00:00
|
|
|
"tinycolor2": "1.6.0",
|
2024-03-01 20:23:53 +00:00
|
|
|
"tmp": "0.2.3",
|
2024-05-22 18:43:07 +00:00
|
|
|
"tsc-alias": "1.8.10",
|
2023-03-30 03:03:04 +00:00
|
|
|
"tsconfig-paths": "4.2.0",
|
2024-01-30 11:59:44 +00:00
|
|
|
"typeorm": "0.3.20",
|
2025-01-13 17:19:05 +00:00
|
|
|
"typescript": "5.7.3",
|
2021-11-11 17:02:25 +00:00
|
|
|
"ulid": "2.3.0",
|
2022-12-03 10:42:05 +00:00
|
|
|
"vary": "1.1.2",
|
2024-01-21 09:43:01 +00:00
|
|
|
"web-push": "3.6.7",
|
2024-08-12 01:44:34 +00:00
|
|
|
"ws": "8.18.0",
|
2024-03-14 16:30:56 +00:00
|
|
|
"xev": "3.0.2",
|
|
|
|
"xmlbuilder": "15.1.1"
|
2021-11-11 17:02:25 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-15 05:28:29 +00:00
|
|
|
"@jest/globals": "29.7.0",
|
2024-01-21 09:43:01 +00:00
|
|
|
"@misskey-dev/eslint-plugin": "1.0.0",
|
2024-12-18 20:35:13 +00:00
|
|
|
"@nestjs/platform-express": "10.4.15",
|
2024-11-05 20:21:24 +00:00
|
|
|
"@swc/jest": "0.2.37",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/accepts": "1.3.7",
|
2024-11-05 20:21:24 +00:00
|
|
|
"@types/archiver": "6.0.3",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/bcryptjs": "2.4.6",
|
|
|
|
"@types/body-parser": "1.19.5",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@types/color-convert": "2.0.4",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/content-disposition": "0.5.8",
|
2024-11-05 20:21:24 +00:00
|
|
|
"@types/fluent-ffmpeg": "2.1.27",
|
2024-12-25 02:18:28 +00:00
|
|
|
"@types/htmlescape": "1.1.3",
|
2024-08-12 01:44:34 +00:00
|
|
|
"@types/http-link-header": "1.0.7",
|
2024-11-05 20:21:24 +00:00
|
|
|
"@types/jest": "29.5.14",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/js-yaml": "4.0.9",
|
2024-08-12 01:44:34 +00:00
|
|
|
"@types/jsdom": "21.1.7",
|
|
|
|
"@types/jsonld": "1.5.15",
|
2024-12-18 20:35:13 +00:00
|
|
|
"@types/jsrsasign": "10.5.15",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/mime-types": "2.1.4",
|
|
|
|
"@types/ms": "0.7.34",
|
2025-01-16 10:46:20 +00:00
|
|
|
"@types/node": "22.10.7",
|
2024-03-16 00:01:03 +00:00
|
|
|
"@types/node-forge": "1.3.11",
|
2024-11-22 16:44:01 +00:00
|
|
|
"@types/nodemailer": "6.4.17",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@types/oauth": "0.9.6",
|
2024-03-30 07:36:20 +00:00
|
|
|
"@types/oauth2orize": "1.11.5",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/oauth2orize-pkce": "0.1.2",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@types/pg": "8.11.10",
|
2024-12-28 09:49:13 +00:00
|
|
|
"@types/psl": "1.1.3",
|
2023-11-27 12:05:20 +00:00
|
|
|
"@types/pug": "2.0.10",
|
2024-12-18 20:35:13 +00:00
|
|
|
"@types/punycode.js": "npm:@types/punycode@2.1.4",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/qrcode": "1.5.5",
|
|
|
|
"@types/random-seed": "0.3.5",
|
|
|
|
"@types/ratelimiter": "3.4.6",
|
|
|
|
"@types/rename": "1.0.7",
|
2024-10-21 01:53:59 +00:00
|
|
|
"@types/sanitize-html": "2.13.0",
|
2024-02-29 02:10:03 +00:00
|
|
|
"@types/semver": "7.5.8",
|
2023-11-14 01:35:48 +00:00
|
|
|
"@types/simple-oauth2": "5.0.7",
|
|
|
|
"@types/sinonjs__fake-timers": "8.1.5",
|
|
|
|
"@types/tinycolor2": "1.4.6",
|
|
|
|
"@types/tmp": "0.2.6",
|
|
|
|
"@types/vary": "1.1.3",
|
2024-10-22 20:48:11 +00:00
|
|
|
"@types/web-push": "3.6.4",
|
2024-11-05 20:21:24 +00:00
|
|
|
"@types/ws": "8.5.13",
|
2024-05-22 18:43:07 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.10.0",
|
|
|
|
"@typescript-eslint/parser": "7.10.0",
|
2024-10-21 01:53:59 +00:00
|
|
|
"aws-sdk-client-mock": "4.1.0",
|
2021-11-19 05:48:59 +00:00
|
|
|
"cross-env": "7.0.3",
|
2024-10-21 01:53:59 +00:00
|
|
|
"eslint": "8.57.1",
|
|
|
|
"eslint-plugin-import": "2.31.0",
|
2024-12-18 20:35:13 +00:00
|
|
|
"execa": "9.5.2",
|
2024-12-25 02:18:28 +00:00
|
|
|
"fkill": "9.0.0",
|
2023-09-15 05:28:29 +00:00
|
|
|
"jest": "29.7.0",
|
|
|
|
"jest-mock": "29.7.0",
|
2024-12-18 20:35:13 +00:00
|
|
|
"nodemon": "3.1.9",
|
2024-01-21 09:43:01 +00:00
|
|
|
"pid-port": "1.0.0",
|
2024-08-12 01:44:34 +00:00
|
|
|
"simple-oauth2": "5.1.0"
|
2021-11-11 17:02:25 +00:00
|
|
|
}
|
2023-02-26 09:51:45 +00:00
|
|
|
}
|