egirlskey/packages/backend/package.json

232 lines
7.0 KiB
JSON
Raw Normal View History

2021-11-11 17:02:25 +00:00
{
refactor: migrate to Yarn Berry (v3.2.1) (#8764) * Yarn berry * Add `.yarn` to dockerignore * Mention in CHANGELOG * Update Dockerfile * Proper upgrade to yarn * use `"packageManager"` * Replace `install-packages.js` with workspaces * Replace `install-packages.js` with workspaces * Typo * `corepack enable` for linting * Remove `packages/*/yarn.lock` * Improve lint workflow * Update .github/workflows/lint.yml Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Update .github/workflows/lint.yml Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * Add `eslint` * Regenerate yarn.lock * 🙏‍ * Update lint.yml :thinking: * Fix workflow! * yarn lint my beloved * corepack enable for mocha/e2e * Update CHANGELOG.md * fix the code that depends on node_modules * tbh * tbh * More yarn workspaces stuff * 🍀 * Change `browser-image-resizer` * :finnadie: * :goberserk: * :godmode: * Remove yarnrc for workspaces * 🙏 * Add proper packages for eslint * Skip extra install * New steps for test.yml too * uhh * Update .dockerignore * Update lint.yml * Update test.yml * Make client/backend lints seperate workflows * package.json names * pnpm = dont change paths * Fix changelog * :bowtie: * I don't know why github workflows hates me... * test * ????? * continue-on-error: true * Fix yarn.lock Co-authored-by: ishowta <ishowta@gmail.com> * add @rollup/pluginutils * add packageExtensions for chartjs_date-fns Co-authored-by: acid-chicken <root@acid-chicken.com> * npm run => yarn * wip * yarn node => node 依存関係の記載不足の解消がかなり多いため、yarn nodeは使わない * fix * fix http-signature * fix * fix * add packageExtensions * :v: * remove `yarn set version berry` * yarn install --immutable Co-authored-by: ishowta <ishowta@gmail.com> * https://github.com/misskey-dev/misskey/pull/8764#discussion_r885749892 * enable actions/setup-node's global cache * Update .gitignore Co-authored-by: iwata <ishowta@gmail.com> * revival gulp build https://github.com/misskey-dev/misskey/pull/8764/files/66ab7591bff9b35255219057e33399a06260aa31#r885899944 * fix lockfile * Update packages/backend/package.json Co-authored-by: iwata <ishowta@gmail.com> * remove packagemanager * `yarn run gulp` in `build` instead of just `gulp` * Update CHANGELOG.md * update lockfile * Add .yarn/cache to gitignore for packages * ? * move resolutions * :v: * update lockfie * update-lockfile * update yarn.lock * fix build * fix * fix * fix: add @tensorflow/tfjs * ダメ * modify lockfile * use yarnrc * update yarnlock * add jest-mock * update-lockfile * update lockfile * update lockfile * move jest-mock, update lockfile Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: tamaina <tamaina@hotmail.co.jp> Co-authored-by: ishowta <ishowta@gmail.com>
2022-11-24 06:39:00 +00:00
"name": "backend",
"main": "./index.js",
2021-11-11 17:02:25 +00:00
"private": true,
"type": "module",
2023-07-07 23:52:51 +00:00
"engines": {
"node": ">=18.16.0"
},
2021-11-11 17:02:25 +00:00
"scripts": {
"start": "node ./built/boot/entry.js",
"start:test": "NODE_ENV=test node ./built/boot/entry.js",
"migrate": "pnpm typeorm migration:run -d ormconfig.js",
"revert": "pnpm typeorm migration:revert -d ormconfig.js",
"check:connect": "node ./check_connect.js",
2023-02-23 06:36:47 +00:00
"build": "swc src -d built -D",
2023-01-19 07:57:37 +00:00
"watch:swc": "swc src -d built -D -w",
2023-02-23 06:36:47 +00:00
"build:tsc": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"watch": "node watch.mjs",
2023-12-07 23:22:08 +00:00
"dev": "node ./built/boot/entry.js",
"typecheck": "tsc --noEmit",
"eslint": "eslint --quiet \"src/**/*.ts\"",
"lint": "pnpm typecheck && pnpm eslint",
"jest": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --forceExit",
"jest-and-coverage": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --coverage --forceExit",
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",
"test": "pnpm jest",
"test-and-coverage": "pnpm jest-and-coverage",
"generate-api-json": "node ./generate_api_json.js"
2021-11-11 17:02:25 +00:00
},
"optionalDependencies": {
2023-04-06 11:22:26 +00:00
"@swc/core-android-arm64": "1.3.11",
2023-05-02 11:52:36 +00:00
"@swc/core-darwin-arm64": "1.3.56",
"@swc/core-darwin-x64": "1.3.56",
2023-07-26 13:06:00 +00:00
"@swc/core-freebsd-x64": "1.3.11",
2023-05-02 11:52:36 +00:00
"@swc/core-linux-arm-gnueabihf": "1.3.56",
"@swc/core-linux-arm64-gnu": "1.3.56",
"@swc/core-linux-arm64-musl": "1.3.56",
"@swc/core-linux-x64-gnu": "1.3.56",
"@swc/core-linux-x64-musl": "1.3.56",
"@swc/core-win32-arm64-msvc": "1.3.56",
"@swc/core-win32-ia32-msvc": "1.3.56",
"@swc/core-win32-x64-msvc": "1.3.56",
2023-04-19 03:52:14 +00:00
"@tensorflow/tfjs": "4.4.0",
"@tensorflow/tfjs-node": "4.4.0",
2023-09-29 06:11:08 +00:00
"bufferutil": "4.0.7",
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",
2023-09-29 06:11:08 +00:00
"utf-8-validate": "6.0.3"
},
2021-11-11 17:02:25 +00:00
"dependencies": {
"@aws-sdk/client-s3": "3.412.0",
"@aws-sdk/lib-storage": "3.412.0",
2023-12-04 10:40:46 +00:00
"@bull-board/api": "5.10.1",
"@bull-board/fastify": "5.10.1",
"@bull-board/ui": "5.10.1",
2023-03-30 03:03:04 +00:00
"@discordapp/twemoji": "14.1.2",
2023-06-24 04:11:53 +00:00
"@fastify/accepts": "4.2.0",
2023-11-17 06:10:04 +00:00
"@fastify/cookie": "9.2.0",
2023-11-01 05:06:54 +00:00
"@fastify/cors": "8.4.1",
"@fastify/express": "2.3.0",
2023-11-14 01:35:48 +00:00
"@fastify/http-proxy": "9.3.0",
2023-09-29 06:11:08 +00:00
"@fastify/multipart": "8.0.0",
2023-11-01 05:06:54 +00:00
"@fastify/static": "6.12.0",
"@fastify/view": "8.2.0",
2023-11-27 12:05:20 +00:00
"@nestjs/common": "10.2.10",
"@nestjs/core": "10.2.10",
"@nestjs/testing": "10.2.10",
2022-08-13 09:45:29 +00:00
"@peertube/http-signature": "1.7.0",
2023-11-01 05:06:54 +00:00
"@simplewebauthn/server": "8.3.5",
2023-10-23 00:20:55 +00:00
"@sinonjs/fake-timers": "11.2.2",
2023-11-27 12:05:20 +00:00
"@smithy/node-http-handler": "2.1.10",
2023-11-17 06:10:04 +00:00
"@swc/cli": "0.1.63",
2023-12-04 10:40:46 +00:00
"@swc/core": "1.3.100",
2023-02-03 05:44:09 +00:00
"accepts": "1.3.8",
2023-01-06 10:59:31 +00:00
"ajv": "8.12.0",
2023-09-05 08:43:43 +00:00
"archiver": "6.0.1",
"async-mutex": "0.4.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",
"body-parser": "1.20.2",
2023-12-04 10:40:46 +00:00
"bullmq": "4.14.4",
"cacheable-lookup": "7.0.0",
"cbor": "9.0.1",
2023-07-15 07:07:30 +00:00
"chalk": "5.3.0",
"chalk-template": "1.1.0",
2022-07-13 12:37:48 +00:00
"chokidar": "3.5.3",
2021-11-11 17:02:25 +00:00
"cli-highlight": "2.1.11",
"color-convert": "2.0.1",
2022-01-21 08:04:48 +00:00
"content-disposition": "0.5.4",
2023-05-02 11:52:36 +00:00
"date-fns": "2.30.0",
2022-01-21 08:04:48 +00:00
"deep-email-validator": "0.1.21",
2023-10-19 10:51:59 +00:00
"fastify": "4.24.3",
2023-11-17 06:10:04 +00:00
"fastify-raw-body": "4.3.0",
2021-11-11 17:02:25 +00:00
"feed": "4.2.2",
2023-11-14 01:35:48 +00:00
"file-type": "18.7.0",
2021-11-11 17:02:25 +00:00
"fluent-ffmpeg": "2.1.2",
2023-02-03 05:44:09 +00:00
"form-data": "4.0.0",
"got": "13.0.0",
2023-07-15 22:43:55 +00:00
"happy-dom": "10.0.3",
2022-11-13 02:14:07 +00:00
"hpagent": "1.2.0",
"http-link-header": "1.1.1",
2023-04-19 03:52:14 +00:00
"ioredis": "5.3.2",
2023-02-03 05:44:09 +00:00
"ip-cidr": "3.1.0",
"ipaddr.js": "2.1.0",
2023-07-07 01:53:06 +00:00
"is-svg": "5.0.0",
2021-11-11 17:02:25 +00:00
"js-yaml": "4.1.0",
2023-12-04 10:40:46 +00:00
"jsdom": "23.0.1",
2023-01-02 11:02:51 +00:00
"json5": "2.2.3",
"jsonld": "8.3.1",
2023-11-27 12:05:20 +00:00
"jsrsasign": "10.9.0",
"meilisearch": "0.36.0",
2023-01-14 00:02:33 +00:00
"mfm-js": "0.23.3",
"microformats-parser": "1.5.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:*",
2021-11-12 10:47:04 +00:00
"ms": "3.0.0-canary.1",
2023-12-04 10:40:46 +00:00
"nanoid": "5.0.4",
2021-11-11 17:02:25 +00:00
"nested-property": "4.0.0",
"node-fetch": "3.3.2",
2023-10-23 00:20:55 +00:00
"nodemailer": "6.9.7",
2022-09-10 10:14:07 +00:00
"nsfwjs": "2.4.2",
2023-02-03 05:44:09 +00:00
"oauth": "0.10.0",
2023-10-16 11:13:05 +00:00
"oauth2orize": "1.12.0",
"oauth2orize-pkce": "0.1.2",
2021-11-11 17:02:25 +00:00
"os-utils": "0.0.14",
2023-11-17 06:10:04 +00:00
"otpauth": "9.2.0",
2022-11-29 04:14:57 +00:00
"parse5": "7.1.2",
"pg": "8.11.3",
"pkce-challenge": "4.0.1",
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",
"pug": "3.0.2",
2023-11-01 05:06:54 +00:00
"punycode": "2.3.1",
2023-02-09 00:25:31 +00:00
"pureimage": "0.3.17",
2023-05-02 11:52:36 +00:00
"qrcode": "1.5.3",
2021-11-11 17:02:25 +00:00
"random-seed": "0.3.0",
"ratelimiter": "3.4.1",
2023-11-27 12:05:20 +00:00
"re2": "1.20.9",
2021-11-11 17:02:25 +00:00
"redis-lock": "0.1.4",
"reflect-metadata": "0.1.13",
"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",
2023-06-24 04:11:53 +00:00
"sanitize-html": "2.11.0",
2023-11-17 06:10:04 +00:00
"secure-json-parse": "2.7.0",
"sharp": "0.32.6",
"sharp-read-bmp": "github:misskey-dev/sharp-read-bmp",
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",
"summaly": "github:misskey-dev/summaly",
2023-12-04 10:40:46 +00:00
"systeminformation": "5.21.20",
2023-02-09 00:25:31 +00:00
"tinycolor2": "1.6.0",
2021-11-11 17:02:25 +00:00
"tmp": "0.2.1",
2023-09-21 01:25:44 +00:00
"tsc-alias": "1.8.8",
2023-03-30 03:03:04 +00:00
"tsconfig-paths": "4.2.0",
2022-03-19 10:22:58 +00:00
"twemoji-parser": "14.0.0",
2023-06-24 04:11:53 +00:00
"typeorm": "0.3.17",
2023-11-21 02:32:13 +00:00
"typescript": "5.3.2",
2021-11-11 17:02:25 +00:00
"ulid": "2.3.0",
"vary": "1.1.2",
"web-push": "3.6.6",
"ws": "8.14.2",
"xev": "3.0.2"
2021-11-11 17:02:25 +00:00
},
"devDependencies": {
"@jest/globals": "29.7.0",
2023-10-28 03:31:18 +00:00
"@simplewebauthn/typescript-types": "8.3.4",
"@swc/jest": "0.2.29",
2023-11-14 01:35:48 +00:00
"@types/accepts": "1.3.7",
2023-11-27 12:05:20 +00:00
"@types/archiver": "6.0.2",
2023-11-14 01:35:48 +00:00
"@types/bcryptjs": "2.4.6",
"@types/body-parser": "1.19.5",
"@types/cbor": "6.0.0",
2023-11-14 01:35:48 +00:00
"@types/color-convert": "2.0.3",
"@types/content-disposition": "0.5.8",
"@types/fluent-ffmpeg": "2.1.24",
"@types/http-link-header": "1.0.5",
2023-11-27 12:05:20 +00:00
"@types/jest": "29.5.10",
2023-11-14 01:35:48 +00:00
"@types/js-yaml": "4.0.9",
2023-11-27 12:05:20 +00:00
"@types/jsdom": "21.1.6",
"@types/jsonld": "1.5.13",
2023-11-14 01:35:48 +00:00
"@types/jsrsasign": "10.5.12",
"@types/mime-types": "2.1.4",
"@types/ms": "0.7.34",
2023-12-04 10:40:46 +00:00
"@types/node": "20.10.3",
"@types/node-fetch": "3.0.3",
2023-11-14 01:35:48 +00:00
"@types/nodemailer": "6.4.14",
"@types/oauth": "0.9.4",
"@types/oauth2orize": "1.11.3",
"@types/oauth2orize-pkce": "0.1.2",
"@types/pg": "8.10.9",
2023-11-27 12:05:20 +00:00
"@types/pug": "2.0.10",
"@types/punycode": "2.1.3",
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",
2023-11-27 12:05:20 +00:00
"@types/sanitize-html": "2.9.5",
"@types/semver": "7.5.6",
2023-05-02 11:52:36 +00:00
"@types/sharp": "0.32.0",
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",
"@types/web-push": "3.6.3",
2023-11-27 12:05:20 +00:00
"@types/ws": "8.5.10",
2023-12-04 10:40:46 +00:00
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
2023-07-07 01:53:06 +00:00
"aws-sdk-client-mock": "3.0.0",
2021-11-19 05:48:59 +00:00
"cross-env": "7.0.3",
2023-12-04 10:40:46 +00:00
"eslint": "8.55.0",
2023-10-28 03:31:18 +00:00
"eslint-plugin-import": "2.29.0",
"execa": "8.0.1",
"jest": "29.7.0",
"jest-mock": "29.7.0",
"simple-oauth2": "5.0.0"
2021-11-11 17:02:25 +00:00
}
2023-02-26 09:51:45 +00:00
}