FoundKey/package.json

152 lines
4.2 KiB
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
2017-02-22 16:06:47 +00:00
"version": "1.0.0",
2016-12-28 22:49:51 +00:00
"license": "MIT",
2017-02-22 16:06:47 +00:00
"description": "A miniblog-based SNS",
2016-12-28 22:49:51 +00:00
"bugs": "https://github.com/syuilo/misskey/issues",
2017-02-22 16:06:47 +00:00
"repository": "https://github.com/syuilo/misskey.git",
2016-12-28 22:49:51 +00:00
"main": "./built/index.js",
2017-02-22 16:06:47 +00:00
"private": true,
2016-12-28 22:49:51 +00:00
"scripts": {
2017-01-14 02:05:21 +00:00
"config": "node ./tools/init.js",
2017-02-06 13:08:54 +00:00
"start": "node ./built",
"debug": "DEBUG=misskey:* node ./built",
2017-01-14 02:05:21 +00:00
"update": "./tools/update.sh",
2017-01-04 03:59:20 +00:00
"swagger": "node ./swagger.js",
2016-12-28 22:49:51 +00:00
"build": "gulp build",
"rebuild": "gulp rebuild",
"clean": "gulp clean",
"cleanall": "gulp cleanall",
"lint": "gulp lint",
2017-03-01 09:13:01 +00:00
"test": "gulp test"
2016-12-28 22:49:51 +00:00
},
"dependencies": {
2017-01-18 05:19:50 +00:00
"@types/bcryptjs": "2.4.0",
"@types/body-parser": "1.16.0",
"@types/chai": "3.4.35",
"@types/chai-http": "0.0.30",
2016-12-28 22:49:51 +00:00
"@types/chalk": "0.4.31",
"@types/compression": "0.0.33",
"@types/cors": "2.8.1",
2017-01-23 09:25:52 +00:00
"@types/debug": "0.0.29",
"@types/elasticsearch": "5.0.13",
2016-12-29 07:08:34 +00:00
"@types/escape-html": "0.0.19",
2016-12-28 22:49:51 +00:00
"@types/event-stream": "3.3.30",
"@types/express": "4.0.35",
2016-12-28 22:49:51 +00:00
"@types/glob": "5.0.30",
"@types/gm": "1.17.30",
"@types/gulp": "4.0.0",
2017-03-01 09:13:01 +00:00
"@types/gulp-mocha": "0.0.29",
2017-01-19 19:43:17 +00:00
"@types/gulp-rename": "0.0.31",
2016-12-28 22:49:51 +00:00
"@types/gulp-tslint": "3.6.30",
"@types/gulp-typescript": "0.0.32",
"@types/gulp-uglify": "0.0.29",
"@types/gulp-util": "3.0.30",
2016-12-29 02:08:48 +00:00
"@types/inquirer": "0.0.32",
2017-01-02 20:49:37 +00:00
"@types/is-root": "1.0.0",
2017-01-07 11:34:41 +00:00
"@types/is-url": "1.2.28",
2016-12-29 02:08:48 +00:00
"@types/js-yaml": "3.5.29",
"@types/mocha": "2.2.40",
"@types/mongodb": "2.1.41",
2017-01-17 01:39:21 +00:00
"@types/monk": "1.0.5",
2017-01-19 07:00:14 +00:00
"@types/morgan": "1.7.32",
2016-12-28 22:49:51 +00:00
"@types/ms": "0.7.29",
"@types/multer": "0.0.33",
2016-12-28 22:49:51 +00:00
"@types/ratelimiter": "2.1.28",
"@types/redis": "0.12.36",
"@types/request": "0.0.41",
2016-12-28 22:49:51 +00:00
"@types/rimraf": "0.0.28",
2017-02-18 02:36:34 +00:00
"@types/riot": "2.6.1",
2016-12-28 22:49:51 +00:00
"@types/serve-favicon": "2.2.28",
"@types/uuid": "2.0.29",
"@types/webpack": "2.2.11",
2017-02-19 03:31:23 +00:00
"@types/webpack-stream": "3.2.6",
"@types/websocket": "0.0.33",
2017-01-21 06:31:16 +00:00
"autwh": "0.0.1",
"bcryptjs": "2.4.3",
2017-03-08 18:50:09 +00:00
"cafy": "2.3.0",
"body-parser": "1.17.1",
2017-01-16 22:51:27 +00:00
"chai": "3.5.0",
2017-01-16 23:53:59 +00:00
"chai-http": "3.0.0",
2016-12-28 22:49:51 +00:00
"chalk": "1.1.3",
"compression": "1.6.2",
"cors": "2.8.1",
"cropperjs": "1.0.0-beta.2",
2017-01-06 02:50:46 +00:00
"crypto": "0.0.3",
"css-loader": "0.27.3",
"debug": "2.6.3",
2016-12-28 22:49:51 +00:00
"deepcopy": "0.6.3",
2017-02-16 20:46:14 +00:00
"download": "5.0.3",
2016-12-29 02:11:11 +00:00
"elasticsearch": "12.1.3",
"emojinize": "1.0.0",
2016-12-29 07:08:34 +00:00
"escape-html": "1.0.3",
2016-12-28 22:49:51 +00:00
"escape-regexp": "0.0.1",
"event-stream": "3.3.4",
"express": "4.14.1",
"file-type": "4.1.0",
2016-12-28 22:49:51 +00:00
"fuckadblock": "3.2.1",
2017-02-28 11:19:12 +00:00
"git-last-commit": "0.2.0",
2016-12-28 22:49:51 +00:00
"glob": "7.1.1",
"gm": "1.23.0",
"gulp": "3.9.1",
"gulp-cssnano": "2.1.2",
2017-01-19 19:43:17 +00:00
"gulp-imagemin": "3.1.1",
"gulp-mocha": "4.1.0",
"gulp-pug": "3.3.0",
2017-01-19 19:43:17 +00:00
"gulp-rename": "1.2.2",
"gulp-tslint": "7.1.0",
"gulp-typescript": "3.1.5",
"gulp-uglify": "2.1.0",
2016-12-29 02:11:11 +00:00
"gulp-util": "3.0.8",
"inquirer": "3.0.6",
2016-12-29 16:35:25 +00:00
"is-root": "1.0.0",
2017-01-07 11:34:41 +00:00
"is-url": "1.2.2",
"js-yaml": "3.8.2",
2017-01-16 14:49:51 +00:00
"mime-types": "2.1.14",
2016-12-30 04:28:56 +00:00
"mocha": "3.2.0",
"mongodb": "2.2.24",
"monk": "4.0.0",
"morgan": "1.8.1",
"ms": "0.7.3",
"multer": "1.3.0",
2016-12-28 22:49:51 +00:00
"nprogress": "0.2.0",
"nyaize": "0.0.2",
2016-12-28 22:49:51 +00:00
"page": "1.7.1",
"prominence": "0.2.0",
2017-02-20 11:54:52 +00:00
"pug": "2.0.0-beta11",
"ratelimiter": "3.0.2",
2016-12-28 22:49:51 +00:00
"recaptcha-promise": "0.1.2",
"reconnecting-websocket": "3.0.3",
"redis": "2.7.0",
"request": "2.81.0",
"rimraf": "2.6.1",
"riot": "3.3.2",
2017-02-19 03:31:23 +00:00
"riot-tag-loader": "1.0.0",
2016-12-28 22:49:51 +00:00
"rndstr": "1.0.0",
2017-01-23 06:18:45 +00:00
"s-age": "1.1.0",
"serve-favicon": "2.4.1",
"string-replace-webpack-plugin": "0.1.2",
2017-02-22 01:49:11 +00:00
"stylus": "0.54.5",
"stylus-loader": "2.5.1",
2016-12-28 22:49:51 +00:00
"subdomain": "1.2.0",
2017-03-11 01:43:13 +00:00
"summaly": "2.0.1",
"swagger-jsdoc": "1.9.2",
2016-12-28 22:49:51 +00:00
"syuilo-password-strength": "0.0.1",
"tcp-port-used": "0.1.2",
"textarea-caret": "3.0.2",
"ts-node": "2.1.0",
"tslint": "4.5.1",
"typescript": "2.2.1",
2017-03-13 08:23:05 +00:00
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#8f4b45f4f814c04918382949b4bcaf7a8d910281",
2016-12-28 22:49:51 +00:00
"uuid": "3.0.1",
"velocity-animate": "1.4.3",
2016-12-28 22:49:51 +00:00
"vhost": "3.0.2",
2017-02-19 03:31:23 +00:00
"webpack": "2.2.1",
"webpack-stream": "3.2.0",
2016-12-29 09:17:41 +00:00
"websocket": "1.0.24",
"whatwg-fetch": "2.0.3",
"xml2json": "0.11.0"
2016-12-28 22:49:51 +00:00
}
}