egirlskey/packages/backend/package.json

187 lines
5.3 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",
2021-11-11 17:02:25 +00:00
"scripts": {
"start": "node ./built/index.js",
"start:test": "NODE_ENV=test node ./built/index.js",
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
"migrate": "typeorm migration:run -d ormconfig.js",
2021-11-11 17:02:25 +00:00
"build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json",
2021-11-19 05:48:59 +00:00
"watch": "node watch.mjs",
"lint": "tsc --noEmit && eslint --quiet \"src/**/*.ts\"",
2022-09-22 19:19:13 +00:00
"jest": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --forceExit --runInBand",
"jest-and-coverage": "cross-env NODE_ENV=test node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --coverage --forceExit --runInBand",
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",
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
"test": "yarn jest",
"test-and-coverage": "yarn jest-and-coverage"
2021-11-11 17:02:25 +00:00
},
"optionalDependencies": {
2022-11-29 04:14:57 +00:00
"@tensorflow/tfjs": "^4.1.0",
"@tensorflow/tfjs-node": "4.1.0"
},
2021-11-11 17:02:25 +00:00
"dependencies": {
2022-12-19 04:20:47 +00:00
"@bull-board/api": "^4.9.0",
"@bull-board/fastify": "^4.9.0",
"@bull-board/ui": "^4.9.0",
"@discordapp/twemoji": "14.0.2",
2022-12-04 01:39:11 +00:00
"@fastify/accepts": "4.1.0",
2022-12-04 08:33:51 +00:00
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "8.2.0",
"@fastify/http-proxy": "^8.4.0",
"@fastify/multipart": "7.3.0",
2022-12-10 07:38:41 +00:00
"@fastify/static": "6.6.0",
2022-12-04 01:39:11 +00:00
"@fastify/view": "7.3.0",
"@nestjs/common": "9.2.1",
"@nestjs/core": "9.2.1",
"@nestjs/testing": "9.2.1",
2022-08-13 09:45:29 +00:00
"@peertube/http-signature": "1.7.0",
2022-12-19 04:20:47 +00:00
"@sinonjs/fake-timers": "10.0.2",
2021-11-11 17:02:25 +00:00
"@syuilo/aiscript": "0.11.1",
"accepts": "^1.3.8",
2022-11-19 01:25:16 +00:00
"ajv": "8.11.2",
2022-04-23 03:29:26 +00:00
"archiver": "5.3.1",
2021-11-11 17:02:25 +00:00
"autwh": "0.1.0",
2022-12-10 07:38:41 +00:00
"aws-sdk": "2.1272.0",
2021-11-11 17:02:25 +00:00
"bcryptjs": "2.4.3",
2022-11-19 01:25:16 +00:00
"blurhash": "2.0.4",
2022-11-29 04:14:57 +00:00
"bull": "4.10.2",
2022-08-13 09:45:29 +00:00
"cacheable-lookup": "6.1.0",
2021-11-11 17:02:25 +00:00
"cbor": "8.1.0",
2022-12-10 07:38:41 +00:00
"chalk": "5.2.0",
2022-03-07 14:51:34 +00:00
"chalk-template": "0.4.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",
2022-09-19 22:33:27 +00:00
"date-fns": "2.29.3",
2022-01-21 08:04:48 +00:00
"deep-email-validator": "0.1.21",
2021-11-11 17:02:25 +00:00
"escape-regexp": "0.0.1",
2022-12-04 01:39:11 +00:00
"fastify": "4.10.2",
2021-11-11 17:02:25 +00:00
"feed": "4.2.2",
2022-09-19 22:33:27 +00:00
"file-type": "18.0.0",
2021-11-11 17:02:25 +00:00
"fluent-ffmpeg": "2.1.2",
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
"form-data": "^4.0.0",
2022-11-19 01:25:16 +00:00
"got": "12.5.3",
2022-11-13 02:14:07 +00:00
"hpagent": "1.2.0",
"ioredis": "4.28.5",
2022-11-19 01:25:16 +00:00
"ip-cidr": "3.0.11",
2022-01-21 08:04:48 +00:00
"is-svg": "4.3.2",
2021-11-11 17:02:25 +00:00
"js-yaml": "4.1.0",
2022-11-29 04:14:57 +00:00
"jsdom": "20.0.3",
2022-12-19 04:20:47 +00:00
"json5": "2.2.2",
2021-11-11 17:02:25 +00:00
"json5-loader": "4.0.1",
2022-09-19 22:33:27 +00:00
"jsonld": "8.1.0",
2022-11-29 04:14:57 +00:00
"jsrsasign": "10.6.1",
2022-07-25 12:10:06 +00:00
"mfm-js": "0.23.0",
2022-03-19 10:22:58 +00:00
"mime-types": "2.1.35",
2022-01-30 02:32:42 +00:00
"misskey-js": "0.0.14",
2021-11-12 10:47:04 +00:00
"ms": "3.0.0-canary.1",
2021-11-11 17:02:25 +00:00
"nested-property": "4.0.0",
2022-11-13 02:14:07 +00:00
"node-fetch": "3.3.0",
2022-10-28 07:08:27 +00:00
"nodemailer": "6.8.0",
2022-09-10 10:14:07 +00:00
"nsfwjs": "2.4.2",
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
"oauth": "^0.10.0",
2021-11-11 17:02:25 +00:00
"os-utils": "0.0.14",
2022-11-29 04:14:57 +00:00
"parse5": "7.1.2",
2022-08-27 07:34:14 +00:00
"pg": "8.8.0",
2022-11-19 01:25:16 +00:00
"private-ip": "3.0.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",
"pug": "3.0.2",
"punycode": "2.1.1",
2022-12-28 09:28:01 +00:00
"pureimage": "0.3.15",
2022-07-25 12:10:06 +00:00
"qrcode": "1.5.1",
2021-11-11 17:02:25 +00:00
"random-seed": "0.3.0",
"ratelimiter": "3.4.1",
2022-12-19 04:20:47 +00:00
"re2": "1.18.0",
2021-11-11 17:02:25 +00:00
"redis-lock": "0.1.4",
"reflect-metadata": "0.1.13",
"rename": "1.0.4",
"rndstr": "1.0.0",
"rss-parser": "3.12.0",
2022-12-19 04:20:47 +00:00
"rxjs": "7.8.0",
2021-11-11 17:02:25 +00:00
"s-age": "1.1.2",
2022-12-22 23:58:02 +00:00
"sanitize-html": "2.8.1",
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
"seedrandom": "^3.0.5",
2022-10-28 07:08:27 +00:00
"semver": "7.3.8",
"sharp": "0.31.3",
2021-11-11 17:02:25 +00:00
"speakeasy": "2.0.0",
"strict-event-emitter-types": "2.0.0",
"stringz": "2.1.0",
2022-07-09 09:23:21 +00:00
"summaly": "2.7.0",
2022-12-06 03:31:50 +00:00
"syslog-pro": "git+https://github.com/misskey-dev/SyslogPro#0.2.9-misskey.2",
2022-12-28 09:28:01 +00:00
"systeminformation": "5.16.9",
2022-12-22 23:58:02 +00:00
"tinycolor2": "1.5.1",
2021-11-11 17:02:25 +00:00
"tmp": "0.2.1",
2022-12-10 07:38:41 +00:00
"tsc-alias": "1.8.2",
2022-12-04 01:39:11 +00:00
"tsconfig-paths": "4.1.1",
2022-03-19 10:22:58 +00:00
"twemoji-parser": "14.0.0",
2022-12-04 01:39:11 +00:00
"typeorm": "0.3.11",
2021-11-11 17:02:25 +00:00
"ulid": "2.3.0",
2022-01-12 15:47:40 +00:00
"unzipper": "0.10.11",
2022-09-10 10:14:07 +00:00
"uuid": "9.0.0",
"vary": "1.1.2",
2022-05-14 05:57:51 +00:00
"web-push": "3.5.0",
2021-11-11 17:02:25 +00:00
"websocket": "1.0.34",
2022-11-13 02:14:07 +00:00
"ws": "8.11.0",
2022-04-17 05:42:13 +00:00
"xev": "3.0.2"
2021-11-11 17:02:25 +00:00
},
"devDependencies": {
2022-12-10 07:38:41 +00:00
"@redocly/openapi-core": "1.0.0-beta.117",
2022-12-22 23:58:02 +00:00
"@swc/core": "1.3.24",
2022-12-10 07:38:41 +00:00
"@swc/jest": "0.2.24",
"@types/accepts": "1.3.5",
2022-09-24 08:07:56 +00:00
"@types/archiver": "5.3.1",
"@types/bcryptjs": "2.4.2",
2022-10-28 07:08:27 +00:00
"@types/bull": "4.10.0",
"@types/cbor": "6.0.0",
"@types/color-convert": "^2.0.0",
"@types/content-disposition": "^0.5.5",
"@types/escape-regexp": "0.0.1",
2022-01-21 08:04:48 +00:00
"@types/fluent-ffmpeg": "2.1.20",
"@types/ioredis": "4.28.10",
2022-12-10 07:38:41 +00:00
"@types/jest": "29.2.4",
"@types/js-yaml": "4.0.5",
2022-11-13 02:14:07 +00:00
"@types/jsdom": "20.0.1",
2022-11-29 04:14:57 +00:00
"@types/jsonld": "1.5.8",
2022-10-28 07:08:27 +00:00
"@types/jsrsasign": "10.5.4",
2022-09-24 08:07:56 +00:00
"@types/mime-types": "2.1.1",
2022-12-28 09:28:01 +00:00
"@types/node": "18.11.18",
"@types/node-fetch": "3.0.3",
2022-12-19 04:20:47 +00:00
"@types/nodemailer": "6.4.7",
"@types/oauth": "0.9.1",
2022-12-28 09:28:01 +00:00
"@types/pg": "8.6.6",
"@types/pug": "2.0.6",
"@types/punycode": "2.1.0",
2022-08-27 07:34:14 +00:00
"@types/qrcode": "1.5.0",
"@types/random-seed": "0.3.3",
2022-10-28 07:08:27 +00:00
"@types/ratelimiter": "3.4.4",
"@types/redis": "4.0.11",
"@types/rename": "1.0.4",
2022-12-19 04:20:47 +00:00
"@types/sanitize-html": "2.8.0",
2022-10-28 07:08:27 +00:00
"@types/semver": "7.3.13",
"@types/sharp": "0.31.0",
"@types/sinonjs__fake-timers": "8.1.2",
"@types/speakeasy": "2.0.7",
"@types/syslog-pro": "^1.0.0",
"@types/tinycolor2": "1.4.3",
"@types/tmp": "0.2.3",
2022-09-24 08:07:56 +00:00
"@types/unzipper": "0.10.5",
2022-12-04 01:39:11 +00:00
"@types/uuid": "9.0.0",
"@types/vary": "1.1.0",
"@types/web-push": "3.3.2",
"@types/websocket": "1.0.5",
"@types/ws": "8.5.3",
2022-12-28 09:28:01 +00:00
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
2021-11-19 05:48:59 +00:00
"cross-env": "7.0.3",
2022-12-19 04:20:47 +00:00
"eslint": "8.30.0",
2022-06-30 15:21:25 +00:00
"eslint-plugin-import": "2.26.0",
"execa": "6.1.0",
2022-11-13 02:14:07 +00:00
"jest": "29.3.1",
2022-11-29 04:14:57 +00:00
"jest-mock": "^29.3.1",
2022-12-10 07:38:41 +00:00
"typescript": "4.9.4"
2021-11-11 17:02:25 +00:00
}
}