Files
misskey/package.json
T

258 lines
7.1 KiB
JSON
Raw Normal View History

2016-12-29 07:49:51 +09:00
{
2017-11-06 19:16:14 +09:00
"name": "misskey",
2020-01-30 04:37:25 +09:00
"author": "syuilo <syuilotan@yahoo.co.jp>",
2021-10-16 19:55:26 +09:00
"version": "12.92.0",
2020-01-30 04:37:25 +09:00
"codename": "indigo",
"repository": {
"type": "git",
2021-03-24 12:23:05 +09:00
"url": "https://github.com/misskey-dev/misskey.git"
},
2019-02-05 13:46:06 +09:00
"main": "./index.js",
2017-11-06 19:16:14 +09:00
"private": true,
"scripts": {
2021-08-19 18:33:41 +09:00
"start": "node --experimental-json-modules ./index.js",
"start:test": "cross-env NODE_ENV=test node --experimental-json-modules ./index.js",
2019-06-29 23:12:00 +09:00
"init": "npm run migrate",
2019-05-14 23:54:39 +09:00
"ormconfig": "node ./built/ormconfig.js",
2019-06-29 23:12:00 +09:00
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrateandstart": "npm run migrate && npm run start",
"build": "npm run build-webpack && npm run build-ts && npm run build-gulp",
2021-03-13 00:40:35 +09:00
"build-webpack": "webpack",
"build-ts": "tsc -p src/tsconfig.json || echo done. && tsc-alias -p src/tsconfig.json",
2021-03-13 00:40:35 +09:00
"build-gulp": "gulp build",
"watch": "concurrently \"npm:watch-*\"",
"watch-webpack": "webpack --watch",
"watch-ts": "tsc -w -p src/tsconfig.json && tsc-alias -w -p src/tsconfig.json",
2021-03-13 00:40:35 +09:00
"watch-gulp": "gulp watch",
2017-11-06 19:16:14 +09:00
"clean": "gulp clean",
"cleanall": "gulp cleanall",
"lint": "tslint 'src/**/*.ts'",
2021-08-12 19:05:07 +09:00
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e": "start-server-and-test start:test http://localhost cy:run",
"test": "cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha",
2020-04-03 23:35:14 +09:00
"format": "gulp format"
2017-11-06 19:16:14 +09:00
},
2019-06-04 23:06:30 +09:00
"resolutions": {
2020-04-26 10:35:47 +09:00
"chokidar": "^3.3.1",
2021-06-12 22:32:44 +09:00
"lodash": "^4.17.21"
2019-06-04 23:06:30 +09:00
},
2017-11-23 06:18:42 +09:00
"dependencies": {
"@elastic/elasticsearch": "7.11.0",
2020-05-24 17:48:24 +09:00
"@koa/cors": "3.1.0",
2020-06-27 23:25:06 +09:00
"@koa/multer": "3.0.0",
2021-03-22 12:43:21 +09:00
"@koa/router": "9.0.1",
2021-01-08 21:43:56 +09:00
"@sentry/browser": "5.29.2",
"@sentry/tracing": "5.29.2",
2021-05-31 11:05:34 +09:00
"@sinonjs/fake-timers": "7.1.2",
2020-10-22 23:09:03 +09:00
"@syuilo/aiscript": "0.11.1",
"@types/bcryptjs": "2.4.2",
2021-10-08 13:34:57 +09:00
"@types/bull": "3.15.5",
2021-05-20 12:27:50 +09:00
"@types/cbor": "6.0.0",
2019-09-27 05:50:34 +09:00
"@types/dateformat": "3.0.1",
"@types/escape-regexp": "0.0.0",
2021-07-17 13:43:09 +09:00
"@types/glob": "7.1.4",
"@types/gulp": "4.0.9",
"@types/gulp-rename": "2.0.1",
"@types/is-url": "1.2.30",
2021-09-22 21:51:24 +09:00
"@types/js-yaml": "4.0.3",
2021-07-17 13:43:09 +09:00
"@types/jsdom": "16.2.13",
"@types/jsonld": "1.5.6",
"@types/katex": "0.11.1",
"@types/koa": "2.13.4",
2021-08-12 11:33:00 +09:00
"@types/koa-bodyparser": "4.3.3",
"@types/koa-cors": "0.0.2",
2021-07-17 13:43:09 +09:00
"@types/koa-favicon": "2.0.21",
2021-10-08 13:34:57 +09:00
"@types/koa-logger": "3.1.2",
2021-09-22 21:51:24 +09:00
"@types/koa-mount": "4.0.1",
2021-07-17 13:43:09 +09:00
"@types/koa-send": "4.1.3",
2021-05-31 11:05:34 +09:00
"@types/koa-views": "7.0.0",
"@types/koa__cors": "3.0.3",
"@types/koa__multer": "2.0.3",
2021-09-22 21:51:24 +09:00
"@types/koa__router": "8.0.8",
2021-10-08 13:34:57 +09:00
"@types/markdown-it": "12.2.3",
2021-08-12 11:33:00 +09:00
"@types/matter-js": "0.17.5",
2021-07-17 13:43:09 +09:00
"@types/mocha": "8.2.3",
2021-10-08 13:34:57 +09:00
"@types/node": "16.10.3",
2021-08-12 11:33:00 +09:00
"@types/node-fetch": "2.5.12",
2021-07-17 13:43:09 +09:00
"@types/nodemailer": "6.4.4",
2019-07-02 19:20:34 +09:00
"@types/nprogress": "0.2.0",
2018-11-04 22:03:55 +09:00
"@types/oauth": "0.9.1",
2021-07-17 13:43:09 +09:00
"@types/parse5": "6.0.1",
2020-12-08 20:14:16 +00:00
"@types/parsimmon": "1.10.6",
2021-07-17 13:43:09 +09:00
"@types/portscanner": "2.1.1",
"@types/pug": "2.0.5",
2021-04-04 13:00:39 +09:00
"@types/punycode": "2.1.0",
2021-07-17 13:43:09 +09:00
"@types/qrcode": "1.4.1",
"@types/random-seed": "0.3.3",
2021-07-17 13:43:09 +09:00
"@types/ratelimiter": "3.4.2",
2021-09-22 21:51:24 +09:00
"@types/redis": "2.8.32",
2021-07-17 13:43:09 +09:00
"@types/rename": "1.0.4",
"@types/request-stats": "3.0.0",
2021-08-19 22:40:39 +09:00
"@types/rimraf": "3.0.2",
2019-05-01 22:56:18 +09:00
"@types/seedrandom": "2.4.28",
2021-09-22 21:51:24 +09:00
"@types/sharp": "0.29.2",
"@types/sinonjs__fake-timers": "6.0.4",
2021-07-17 13:43:09 +09:00
"@types/speakeasy": "2.0.6",
2021-01-11 20:38:34 +09:00
"@types/throttle-debounce": "2.1.0",
2021-07-17 13:43:09 +09:00
"@types/tinycolor2": "1.4.3",
"@types/tmp": "0.2.1",
"@types/uuid": "8.3.1",
"@types/web-push": "3.3.2",
2021-04-16 08:51:38 +09:00
"@types/webpack": "5.28.0",
"@types/webpack-stream": "3.2.12",
2021-08-12 11:33:00 +09:00
"@types/websocket": "1.0.4",
2021-10-08 13:34:57 +09:00
"@types/ws": "8.2.0",
2021-10-16 19:38:47 +09:00
"@typescript-eslint/parser": "5.0.0",
"@vue/compiler-sfc": "3.2.20",
"abort-controller": "3.0.0",
2021-09-22 21:51:24 +09:00
"apexcharts": "3.28.3",
"autobind-decorator": "2.4.0",
2021-05-20 12:27:50 +09:00
"autosize": "4.0.4",
2018-06-17 11:23:18 +09:00
"autwh": "0.1.0",
2021-10-08 13:34:57 +09:00
"aws-sdk": "2.1003.0",
2018-06-17 11:23:18 +09:00
"bcryptjs": "2.4.3",
2021-08-19 22:40:39 +09:00
"blurhash": "1.1.4",
"broadcast-channel": "4.2.0",
2021-10-16 19:38:47 +09:00
"bull": "3.29.3",
"cacheable-lookup": "6.0.3",
2020-01-07 21:51:37 +09:00
"cafy": "15.2.1",
2021-10-08 13:34:57 +09:00
"cbor": "8.0.2",
2021-08-12 11:33:00 +09:00
"chalk": "4.1.2",
2020-11-07 12:48:21 +09:00
"chart.js": "2.9.4",
2021-04-16 08:51:38 +09:00
"cli-highlight": "2.1.11",
"compare-versions": "3.6.0",
2021-10-08 13:34:57 +09:00
"concurrently": "6.3.0",
2019-03-18 15:23:45 +09:00
"content-disposition": "0.5.3",
2018-06-17 11:23:18 +09:00
"crc-32": "1.2.0",
2021-10-16 19:38:47 +09:00
"css-loader": "6.4.0",
2021-08-19 22:40:39 +09:00
"cssnano": "5.0.8",
2021-02-06 12:10:04 +09:00
"dateformat": "4.5.1",
"escape-regexp": "0.0.1",
2021-10-16 19:38:47 +09:00
"eslint": "8.0.1",
2021-10-08 13:34:57 +09:00
"eslint-plugin-vue": "7.19.1",
2020-10-17 20:12:00 +09:00
"eventemitter3": "4.0.7",
2021-02-06 12:10:04 +09:00
"feed": "4.2.2",
2021-08-12 11:33:00 +09:00
"file-type": "16.5.3",
2019-07-20 03:28:14 +09:00
"fluent-ffmpeg": "2.1.2",
2021-10-08 13:34:57 +09:00
"glob": "7.2.0",
2021-03-12 23:31:01 +09:00
"got": "11.8.2",
2019-05-14 21:17:29 +09:00
"gulp": "4.0.2",
2020-12-26 10:01:32 +09:00
"gulp-cssnano": "2.1.3",
2019-12-20 04:46:28 +09:00
"gulp-rename": "2.0.0",
2021-05-20 12:27:50 +09:00
"gulp-replace": "1.1.3",
2021-10-08 13:34:57 +09:00
"gulp-terser": "2.1.0",
2019-03-13 09:19:48 +09:00
"gulp-tslint": "8.1.4",
"hpagent": "0.1.2",
2020-10-17 20:12:00 +09:00
"http-signature": "1.3.5",
2021-08-12 11:33:00 +09:00
"idb-keyval": "5.1.3",
2019-07-11 23:46:46 +09:00
"insert-text-at-cursor": "0.3.0",
2021-09-03 21:00:44 +09:00
"ip-cidr": "3.0.4",
2021-03-19 23:25:10 +09:00
"is-svg": "4.3.1",
2021-04-16 08:51:38 +09:00
"js-yaml": "4.1.0",
2021-08-12 11:33:00 +09:00
"jsdom": "16.7.0",
2021-02-06 12:10:04 +09:00
"json5": "2.2.0",
2020-10-22 23:09:03 +09:00
"json5-loader": "4.0.1",
2021-07-17 13:43:09 +09:00
"jsonld": "5.2.0",
2020-06-27 23:25:06 +09:00
"jsrsasign": "8.0.20",
2021-09-16 22:04:47 +09:00
"katex": "0.13.18",
2021-10-08 13:34:57 +09:00
"koa": "2.13.3",
2020-04-04 11:08:10 +09:00
"koa-bodyparser": "4.3.0",
"koa-favicon": "2.1.0",
2018-06-17 11:23:18 +09:00
"koa-json-body": "5.3.0",
2019-07-22 07:31:02 +09:00
"koa-logger": "3.2.1",
"koa-mount": "4.0.0",
2020-07-11 23:53:29 +09:00
"koa-send": "5.0.1",
2018-06-17 11:23:18 +09:00
"koa-slow": "2.1.0",
2021-03-18 20:26:33 +00:00
"koa-views": "7.0.1",
2018-12-03 20:08:18 +09:00
"langmap": "0.0.16",
2021-08-12 11:33:00 +09:00
"markdown-it": "12.2.0",
2021-03-12 23:31:01 +09:00
"markdown-it-anchor": "7.1.0",
2021-04-16 08:51:38 +09:00
"matter-js": "0.17.1",
2021-10-08 13:34:57 +09:00
"mfm-js": "0.20.0",
2021-07-17 13:43:09 +09:00
"misskey-js": "0.0.6",
2021-05-20 12:27:50 +09:00
"mocha": "8.4.0",
2020-12-11 20:14:41 +00:00
"ms": "2.1.3",
2021-08-12 11:33:00 +09:00
"multer": "1.4.3",
2020-10-01 19:51:34 +09:00
"nested-property": "4.0.0",
2020-10-17 20:12:00 +09:00
"node-fetch": "2.6.1",
2021-10-16 19:38:47 +09:00
"nodemailer": "6.7.0",
2018-07-27 18:42:58 +09:00
"os-utils": "0.0.14",
2020-08-01 00:56:09 +09:00
"parse5": "6.0.1",
2021-08-19 22:40:39 +09:00
"pg": "8.7.1",
2018-07-13 23:25:32 +09:00
"portscanner": "2.2.0",
2021-10-08 13:34:57 +09:00
"postcss": "8.3.9",
2021-10-16 19:38:47 +09:00
"postcss-loader": "6.2.0",
2021-09-22 21:51:24 +09:00
"prismjs": "1.25.0",
2021-10-16 19:38:47 +09:00
"private-ip": "2.3.0",
2021-06-08 11:40:08 +09:00
"probe-image-size": "7.2.1",
2018-10-11 21:14:20 +09:00
"promise-limit": "2.7.0",
"pug": "3.0.2",
2018-06-17 11:23:18 +09:00
"punycode": "2.1.1",
2021-09-16 22:04:47 +09:00
"pureimage": "0.3.5",
2019-11-24 17:09:32 +09:00
"qrcode": "1.4.4",
"random-seed": "0.3.0",
2020-04-04 11:08:10 +09:00
"ratelimiter": "3.4.1",
2021-05-20 12:27:50 +09:00
"re2": "1.16.0",
2021-04-25 11:30:02 +09:00
"redis": "3.1.2",
2019-09-09 22:46:45 +09:00
"redis-lock": "0.1.4",
2019-04-07 21:50:36 +09:00
"reflect-metadata": "0.1.13",
2019-03-18 13:20:49 +09:00
"rename": "1.0.4",
2018-09-15 05:40:58 +09:00
"request-stats": "3.0.0",
2019-04-07 21:50:36 +09:00
"require-all": "3.0.0",
2020-02-13 22:39:23 +09:00
"rimraf": "3.0.2",
2018-06-17 11:23:18 +09:00
"rndstr": "1.0.0",
2018-02-02 07:34:51 +09:00
"s-age": "1.1.2",
2021-10-16 19:38:47 +09:00
"sass": "1.43.2",
"sass-loader": "12.2.0",
2019-09-27 05:50:34 +09:00
"seedrandom": "3.0.5",
2021-09-16 22:04:47 +09:00
"sharp": "0.29.1",
2018-06-17 11:23:18 +09:00
"speakeasy": "2.0.0",
"strict-event-emitter-types": "2.0.0",
2020-04-04 11:08:10 +09:00
"stringz": "2.1.0",
2021-09-22 21:51:24 +09:00
"style-loader": "3.3.0",
2021-08-12 11:33:00 +09:00
"summaly": "2.4.1",
2019-08-30 08:29:46 +09:00
"syslog-pro": "1.0.0",
2021-10-16 19:38:47 +09:00
"systeminformation": "5.9.7",
2017-11-06 19:16:14 +09:00
"syuilo-password-strength": "0.0.1",
2018-02-23 02:24:01 +09:00
"textarea-caret": "3.1.0",
2020-07-02 19:17:26 +09:00
"three": "0.117.1",
2021-01-11 20:38:34 +09:00
"throttle-debounce": "3.0.1",
2020-10-17 20:12:00 +09:00
"tinycolor2": "1.4.2",
2020-05-04 12:56:02 +09:00
"tmp": "0.2.1",
2021-09-22 21:51:24 +09:00
"ts-loader": "9.2.6",
2021-10-16 19:38:47 +09:00
"ts-node": "10.3.0",
2021-10-08 13:34:57 +09:00
"tsc-alias": "1.3.10",
2021-09-16 22:04:47 +09:00
"tsconfig-paths": "3.11.0",
2020-08-08 10:30:38 +09:00
"tslint": "6.1.3",
"tslint-sonarts": "1.9.0",
2021-05-30 20:52:39 +09:00
"twemoji-parser": "13.1.0",
2021-10-08 13:34:57 +09:00
"typeorm": "0.2.38",
2021-10-16 19:38:47 +09:00
"typescript": "4.4.4",
2019-04-07 21:50:36 +09:00
"ulid": "2.3.0",
2020-12-11 20:15:09 +00:00
"uuid": "8.3.2",
2019-03-03 08:23:06 +09:00
"v-debounce": "0.1.2",
2021-09-17 22:58:26 +09:00
"vanilla-tilt": "1.7.2",
2021-10-16 19:38:47 +09:00
"vue": "3.2.20",
2021-09-22 21:51:24 +09:00
"vue-loader": "16.7.0",
"vue-prism-editor": "2.0.0-alpha.2",
2021-03-12 20:15:47 +00:00
"vue-router": "4.0.5",
2021-03-04 20:14:54 +00:00
"vue-style-loader": "4.1.3",
2021-04-12 23:13:58 +09:00
"vue-svg-loader": "0.17.0-beta.2",
"vuedraggable": "4.0.1",
2021-07-17 13:43:09 +09:00
"web-push": "3.4.5",
2021-10-16 19:38:47 +09:00
"webpack": "5.58.2",
2021-10-08 13:34:57 +09:00
"webpack-cli": "4.9.0",
2021-04-16 08:51:38 +09:00
"websocket": "1.0.34",
2021-10-08 13:34:57 +09:00
"ws": "8.2.3",
2018-06-21 02:12:20 +09:00
"xev": "2.0.1"
2019-07-20 03:28:14 +09:00
},
"devDependencies": {
"@redocly/openapi-core": "1.0.0-beta.54",
2021-04-25 11:30:02 +09:00
"@types/fluent-ffmpeg": "2.1.17",
2021-08-12 19:05:07 +09:00
"cross-env": "7.0.3",
2021-10-08 13:34:57 +09:00
"cypress": "8.5.0",
2021-09-22 21:51:24 +09:00
"start-server-and-test": "1.14.0"
2017-11-06 19:16:14 +09:00
}
2018-06-11 11:44:26 +09:00
}