iceshrimp-legacy/package.json

223 lines
5.8 KiB
JSON
Raw Normal View History

2016-12-28 23:49:51 +01:00
{
2017-11-06 11:16:14 +01:00
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
2018-06-10 18:28:45 +02:00
"version": "2.36.1",
"clientVersion": "1.0.6396",
2018-03-28 02:27:57 +02:00
"codename": "nighthike",
2017-11-06 11:16:14 +01:00
"main": "./built/index.js",
"private": true,
"scripts": {
2018-04-15 05:13:10 +02:00
"config": "node ./cli/init.js",
2017-11-06 11:16:14 +01:00
"start": "node ./built",
"debug": "DEBUG=misskey:* node ./built",
"swagger": "node ./swagger.js",
2018-04-16 00:07:44 +02:00
"build": "webpack && gulp build",
"webpack": "webpack",
"watch": "webpack --watch",
2018-03-02 11:20:52 +01:00
"gulp": "gulp build",
2017-11-06 11:16:14 +01:00
"rebuild": "gulp rebuild",
"clean": "gulp clean",
"cleanall": "gulp cleanall",
"lint": "gulp lint",
"test": "gulp test",
"format": "gulp format"
2017-11-06 11:16:14 +01:00
},
"dependencies": {
"@fortawesome/fontawesome": "1.0.1",
2017-12-31 17:58:12 +01:00
"@fortawesome/fontawesome-free-brands": "5.0.2",
"@fortawesome/fontawesome-free-regular": "5.0.2",
"@fortawesome/fontawesome-free-solid": "5.0.2",
2018-04-13 04:50:36 +02:00
"@koa/cors": "2.2.1",
2017-11-23 05:25:33 +01:00
"@prezzemolo/rap": "0.1.2",
:up: move some packages to devDependencies that non required by server presumed by: - move-to-devdependencies.fish ```fish set targets (ls src | grep -v client | xargs -I'%' echo "src/%") alias from_import="git grep 'import ' $targets | grep -v 'from \'\.' | grep -v 'from \"\.' | cut -d: -f2 | cut -d\; -f1 | rev | cut -d' ' -f1 | rev | cut -d\' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'`" alias from_require="git grep 'require(' $targets | grep -v '(\'\.' | cut -d= -f2 | grep -v '__dirname' | grep require | cut -d' ' -f2 | cut -d')' -f1 | cut -d'(' -f2 | cut -d'\'' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'" from_import | xargs npm uninstall --save-dev from_require | xargs npm uninstall --save-dev from_import | xargs npm install --save from_require | xargs npm install --save git show HEAD:require | node revert-pinning-dependencies.js ``` - revert-pinning-dependencies.js ```js const readFromStdin = () => new Promise((resolve, reject) => { const chunks = [] process.stdin.setEncoding('utf8') process.stdin.on('readable', () => { const chunk = process.stdin.read() if (chunk == null) return chunks.push(chunk) }) process.stdin.on('end', () => { return resolve(chunks.join('\n')) }) }) async function main () { const fs = require('fs') const raw = await readFromStdin() const head = JSON.parse(raw) const now = JSON.parse(fs.readFileSync('package.json')) Object.keys(now.dependencies).forEach(key => { now.dependencies[key] = head.dependencies[key] }) fs.writeFileSync('package.json', JSON.stringify(now,null,'\t')) } main().catch(console.error) ```
2018-06-10 23:40:27 +02:00
"autwh": "0.1.0",
"bcryptjs": "2.4.3",
"cafy": "8.0.0",
"chalk": "2.4.1",
"crc-32": "1.2.0",
"debug": "3.1.0",
"deepcopy": "0.6.3",
"diskusage": "0.2.4",
"elasticsearch": "15.0.0",
"emojilib": "2.2.12",
"escape-regexp": "0.0.1",
"file-type": "8.0.0",
"gm": "1.23.1",
"http-signature": "1.2.0",
"is-root": "2.0.0",
"is-url": "1.2.4",
"js-yaml": "3.11.0",
"jsdom": "11.11.0",
"koa": "2.5.1",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-favicon": "2.0.1",
"koa-json-body": "5.3.0",
"koa-logger": "3.2.0",
"koa-mount": "3.0.0",
"koa-multer": "1.0.2",
"koa-router": "7.4.0",
"koa-send": "4.1.3",
"koa-slow": "2.1.0",
"koa-views": "6.1.4",
"kue": "0.11.6",
"mongodb": "3.0.10",
"monk": "6.0.6",
"ms": "2.1.1",
"nopt": "4.0.1",
"os-utils": "0.0.14",
"parse5": "5.0.0",
"prominence": "0.2.0",
"promise-sequential": "1.1.1",
"punycode": "2.1.1",
"qrcode": "1.2.0",
"ratelimiter": "3.0.3",
"recaptcha-promise": "0.1.3",
"reconnecting-websocket": "3.2.2",
"redis": "2.8.0",
"request": "2.87.0",
"request-promise-native": "1.0.5",
"rndstr": "1.0.0",
"speakeasy": "2.0.0",
"summaly": "2.0.6",
"tcp-port-used": "0.1.2",
"tmp": "0.0.33",
"uuid": "3.2.1",
"web-push": "3.3.1",
"webfinger.js": "2.6.6",
"websocket": "1.0.26",
"ws": "5.2.0",
"xev": "2.0.1"
},
"devDependencies": {
2017-11-23 05:25:33 +01:00
"@prezzemolo/zip": "0.0.3",
2017-11-06 11:16:14 +01:00
"@types/bcryptjs": "2.4.1",
"@types/debug": "0.0.30",
"@types/deep-equal": "1.0.1",
2018-05-17 10:01:07 +02:00
"@types/elasticsearch": "5.0.23",
"@types/gm": "1.18.0",
2017-12-31 17:58:12 +01:00
"@types/gulp": "3.8.36",
2018-03-28 02:15:58 +02:00
"@types/gulp-htmlmin": "1.3.32",
"@types/gulp-mocha": "0.0.32",
2017-11-25 02:47:04 +01:00
"@types/gulp-rename": "0.0.33",
"@types/gulp-replace": "0.0.31",
2018-03-28 02:15:58 +02:00
"@types/gulp-uglify": "3.0.5",
2017-11-25 02:47:04 +01:00
"@types/gulp-util": "3.0.34",
"@types/inquirer": "0.0.41",
2017-11-06 11:16:14 +01:00
"@types/is-root": "1.0.0",
"@types/is-url": "1.2.28",
"@types/js-yaml": "3.11.1",
2018-04-13 04:50:36 +02:00
"@types/koa": "2.0.45",
"@types/koa-bodyparser": "4.2.0",
2018-04-27 12:12:15 +02:00
"@types/koa-compress": "2.0.8",
2018-04-13 04:50:36 +02:00
"@types/koa-favicon": "2.0.19",
2018-04-27 12:12:15 +02:00
"@types/koa-logger": "3.1.0",
2018-04-13 04:50:36 +02:00
"@types/koa-mount": "3.0.1",
"@types/koa-multer": "1.0.0",
2018-04-27 12:12:15 +02:00
"@types/koa-router": "7.0.28",
2018-04-13 04:50:36 +02:00
"@types/koa-send": "4.1.1",
2018-05-18 00:19:13 +02:00
"@types/koa-views": "2.0.3",
2018-04-13 04:50:36 +02:00
"@types/koa__cors": "2.2.2",
"@types/kue": "0.11.8",
2018-02-22 18:16:17 +01:00
"@types/license-checker": "15.0.0",
2017-12-31 17:58:12 +01:00
"@types/mkdirp": "0.5.2",
2018-04-27 12:12:15 +02:00
"@types/mocha": "5.2.0",
2018-05-17 10:01:07 +02:00
"@types/mongodb": "3.0.18",
2017-11-06 11:16:14 +01:00
"@types/ms": "0.7.30",
2018-05-20 07:10:30 +02:00
"@types/node": "10.1.2",
2018-03-29 07:59:06 +02:00
"@types/nopt": "3.0.29",
2018-05-18 00:19:13 +02:00
"@types/parse5": "3.0.0",
2017-12-31 17:58:12 +01:00
"@types/pug": "2.0.4",
2018-02-22 18:24:01 +01:00
"@types/qrcode": "0.8.1",
2017-11-06 11:16:14 +01:00
"@types/ratelimiter": "2.1.28",
2018-03-14 20:58:54 +01:00
"@types/redis": "2.8.6",
2018-02-01 23:34:51 +01:00
"@types/request": "2.47.0",
2018-03-14 20:58:54 +01:00
"@types/request-promise-native": "1.0.14",
2017-11-06 11:16:14 +01:00
"@types/rimraf": "2.0.2",
"@types/seedrandom": "2.4.27",
2018-05-18 00:19:13 +02:00
"@types/single-line-log": "1.1.0",
2018-02-01 23:34:51 +01:00
"@types/speakeasy": "2.0.2",
"@types/tmp": "0.0.33",
2017-11-06 11:16:14 +01:00
"@types/uuid": "3.4.3",
2018-05-20 07:10:30 +02:00
"@types/webpack": "4.4.0",
2018-03-14 20:58:54 +01:00
"@types/webpack-stream": "3.2.10",
2018-05-17 10:01:07 +02:00
"@types/websocket": "0.0.39",
"@types/ws": "5.1.1",
2017-11-06 11:16:14 +01:00
"animejs": "2.2.0",
2018-05-17 10:01:07 +02:00
"autosize": "4.0.2",
"bootstrap-vue": "2.0.0-rc.6",
"css-loader": "0.28.11",
2017-11-06 11:16:14 +01:00
"deep-equal": "1.0.1",
2018-05-17 10:01:07 +02:00
"dompurify": "1.0.4",
2018-05-20 07:10:30 +02:00
"element-ui": "2.3.9",
"eslint": "4.19.1",
2018-04-27 12:12:15 +02:00
"eslint-plugin-vue": "4.5.0",
"eventemitter3": "3.1.0",
2017-12-08 17:22:20 +01:00
"exif-js": "2.3.0",
2018-03-14 20:58:54 +01:00
"file-loader": "1.1.11",
2017-11-06 11:16:14 +01:00
"fuckadblock": "3.2.1",
2017-11-23 05:25:33 +01:00
"gulp": "3.9.1",
2018-03-28 02:15:58 +02:00
"gulp-cssnano": "2.1.3",
"gulp-htmlmin": "4.0.0",
"gulp-imagemin": "4.1.0",
2018-05-26 06:23:58 +02:00
"gulp-mocha": "6.0.0",
2018-04-18 07:26:46 +02:00
"gulp-pug": "4.0.1",
2018-05-17 10:01:07 +02:00
"gulp-rename": "1.2.3",
"gulp-replace": "1.0.0",
2018-03-14 20:58:54 +01:00
"gulp-sourcemaps": "2.6.4",
2018-02-01 23:34:51 +01:00
"gulp-stylus": "2.7.0",
2018-02-22 18:24:01 +01:00
"gulp-tslint": "8.1.3",
"gulp-typescript": "4.0.2",
2017-11-23 05:25:33 +01:00
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
2018-05-26 06:23:58 +02:00
"hard-source-webpack-plugin": "0.6.10",
2017-12-08 17:22:20 +01:00
"highlight.js": "9.12.0",
2018-05-26 06:23:58 +02:00
"html-minifier": "3.5.16",
2018-03-28 02:15:58 +02:00
"inquirer": "5.2.0",
2018-05-20 07:10:30 +02:00
"license-checker": "20.0.0",
2018-02-22 18:16:17 +01:00
"loader-utils": "1.1.0",
2017-11-26 22:39:01 +01:00
"mecab-async": "0.1.2",
2017-12-31 17:58:12 +01:00
"mkdirp": "0.5.1",
2018-05-20 07:10:30 +02:00
"mocha": "5.2.0",
2017-11-25 02:47:04 +01:00
"moji": "0.5.1",
2018-03-28 02:15:58 +02:00
"nan": "2.10.0",
2018-04-27 12:12:15 +02:00
"node-sass": "4.9.0",
2018-04-18 07:26:46 +02:00
"node-sass-json-importer": "3.2.0",
2017-11-06 11:16:14 +01:00
"nprogress": "0.2.0",
"object-assign-deep": "0.4.0",
2018-03-14 20:58:54 +01:00
"on-build-webpack": "0.1.0",
"progress-bar-webpack-plugin": "1.11.0",
"pug": "2.0.3",
2017-11-06 11:16:14 +01:00
"rimraf": "2.6.2",
2018-02-01 23:34:51 +01:00
"s-age": "1.1.2",
2018-04-18 07:26:46 +02:00
"sass-loader": "7.0.1",
2017-12-08 17:22:20 +01:00
"seedrandom": "2.4.3",
2018-05-18 00:19:13 +02:00
"single-line-log": "1.1.2",
"style-loader": "0.21.0",
2017-11-23 05:25:33 +01:00
"stylus": "0.54.5",
2018-03-14 20:58:54 +01:00
"stylus-loader": "3.0.2",
2017-11-23 05:25:33 +01:00
"swagger-jsdoc": "1.9.7",
2017-11-06 11:16:14 +01:00
"syuilo-password-strength": "0.0.1",
2018-02-22 18:24:01 +01:00
"textarea-caret": "3.1.0",
2018-05-17 10:01:07 +02:00
"ts-loader": "4.3.0",
2018-05-26 06:23:58 +02:00
"ts-node": "6.0.4",
2018-05-17 10:01:07 +02:00
"tslint": "5.10.0",
2018-04-27 12:12:15 +02:00
"typescript": "2.8.3",
2018-04-18 07:26:46 +02:00
"typescript-eslint-parser": "15.0.0",
2018-02-01 23:34:51 +01:00
"uglify-es": "3.3.9",
2018-03-14 20:58:54 +01:00
"url-loader": "1.0.1",
2018-03-10 05:22:20 +01:00
"v-animate-css": "0.0.2",
2018-03-14 20:58:54 +01:00
"vue": "2.5.16",
2018-02-22 18:16:17 +01:00
"vue-cropperjs": "2.2.0",
2018-04-18 07:26:46 +02:00
"vue-js-modal": "1.3.13",
2018-04-27 12:12:15 +02:00
"vue-json-tree-view": "2.1.4",
2018-05-26 06:23:58 +02:00
"vue-loader": "15.2.1",
2018-05-19 13:31:13 +02:00
"vue-material": "^1.0.0-beta-10.2",
2018-02-22 18:16:17 +01:00
"vue-router": "3.0.1",
2018-03-14 20:58:54 +01:00
"vue-template-compiler": "2.5.16",
2018-02-22 18:16:17 +01:00
"vuedraggable": "2.16.0",
2018-04-27 12:12:15 +02:00
"vuex": "3.0.1",
2018-05-20 19:13:39 +02:00
"vuex-persistedstate": "^2.5.4",
2018-05-26 06:23:58 +02:00
"webpack": "4.9.1",
:up: move some packages to devDependencies that non required by server presumed by: - move-to-devdependencies.fish ```fish set targets (ls src | grep -v client | xargs -I'%' echo "src/%") alias from_import="git grep 'import ' $targets | grep -v 'from \'\.' | grep -v 'from \"\.' | cut -d: -f2 | cut -d\; -f1 | rev | cut -d' ' -f1 | rev | cut -d\' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'`" alias from_require="git grep 'require(' $targets | grep -v '(\'\.' | cut -d= -f2 | grep -v '__dirname' | grep require | cut -d' ' -f2 | cut -d')' -f1 | cut -d'(' -f2 | cut -d'\'' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'" from_import | xargs npm uninstall --save-dev from_require | xargs npm uninstall --save-dev from_import | xargs npm install --save from_require | xargs npm install --save git show HEAD:require | node revert-pinning-dependencies.js ``` - revert-pinning-dependencies.js ```js const readFromStdin = () => new Promise((resolve, reject) => { const chunks = [] process.stdin.setEncoding('utf8') process.stdin.on('readable', () => { const chunk = process.stdin.read() if (chunk == null) return chunks.push(chunk) }) process.stdin.on('end', () => { return resolve(chunks.join('\n')) }) }) async function main () { const fs = require('fs') const raw = await readFromStdin() const head = JSON.parse(raw) const now = JSON.parse(fs.readFileSync('package.json')) Object.keys(now.dependencies).forEach(key => { now.dependencies[key] = head.dependencies[key] }) fs.writeFileSync('package.json', JSON.stringify(now,null,'\t')) } main().catch(console.error) ```
2018-06-10 23:40:27 +02:00
"webpack-cli": "2.1.4"
2017-11-06 11:16:14 +01:00
}
:up: move some packages to devDependencies that non required by server presumed by: - move-to-devdependencies.fish ```fish set targets (ls src | grep -v client | xargs -I'%' echo "src/%") alias from_import="git grep 'import ' $targets | grep -v 'from \'\.' | grep -v 'from \"\.' | cut -d: -f2 | cut -d\; -f1 | rev | cut -d' ' -f1 | rev | cut -d\' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'`" alias from_require="git grep 'require(' $targets | grep -v '(\'\.' | cut -d= -f2 | grep -v '__dirname' | grep require | cut -d' ' -f2 | cut -d')' -f1 | cut -d'(' -f2 | cut -d'\'' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'" from_import | xargs npm uninstall --save-dev from_require | xargs npm uninstall --save-dev from_import | xargs npm install --save from_require | xargs npm install --save git show HEAD:require | node revert-pinning-dependencies.js ``` - revert-pinning-dependencies.js ```js const readFromStdin = () => new Promise((resolve, reject) => { const chunks = [] process.stdin.setEncoding('utf8') process.stdin.on('readable', () => { const chunk = process.stdin.read() if (chunk == null) return chunks.push(chunk) }) process.stdin.on('end', () => { return resolve(chunks.join('\n')) }) }) async function main () { const fs = require('fs') const raw = await readFromStdin() const head = JSON.parse(raw) const now = JSON.parse(fs.readFileSync('package.json')) Object.keys(now.dependencies).forEach(key => { now.dependencies[key] = head.dependencies[key] }) fs.writeFileSync('package.json', JSON.stringify(now,null,'\t')) } main().catch(console.error) ```
2018-06-10 23:40:27 +02:00
}