hardlounge/package.json

129 lines
3.5 KiB
JSON
Raw Normal View History

2014-03-04 08:31:52 -08:00
{
"name": "thelounge",
2015-04-29 12:55:13 -07:00
"description": "The self-hosted Web IRC client",
2020-08-20 09:13:57 -07:00
"version": "4.2.0",
2014-08-13 14:35:20 -07:00
"preferGlobal": true,
"bin": {
"thelounge": "index.js"
2014-08-13 14:35:20 -07:00
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/thelounge.git"
2014-08-13 14:35:20 -07:00
},
"homepage": "https://thelounge.chat/",
2014-08-13 14:35:20 -07:00
"scripts": {
2017-11-27 01:45:58 -08:00
"build": "webpack",
2020-03-22 03:47:41 -07:00
"coverage": "run-s test:* && nyc --nycrc-path=test/.nycrc-report.json report",
"dev": "node index start --dev",
"format:prettier": "prettier --write \"**/*.*\"",
2019-07-17 02:32:26 -07:00
"lint:check-eslint": "eslint --print-config .eslintrc.yml | eslint-config-prettier-check",
"lint:eslint": "eslint . --ext .js,.vue --report-unused-disable-directives --color",
"lint:prettier": "prettier --list-different \"**/*.*\"",
"lint:stylelint": "stylelint --color \"client/**/*.css\"",
"start": "node index start",
2020-03-22 03:47:41 -07:00
"test": "run-p --aggregate-output --continue-on-error lint:* test:*",
"test:mocha": "webpack --config webpack.config-test.js && nyc --nycrc-path=test/.nycrc-mocha.json mocha --colors --config=test/.mocharc.yml",
"watch": "webpack --watch"
2014-03-24 06:44:41 -07:00
},
"keywords": [
2016-11-19 02:05:46 -08:00
"lounge",
2014-04-20 10:13:33 -07:00
"browser",
2014-06-26 09:14:45 -07:00
"web",
2014-03-24 06:44:41 -07:00
"chat",
2014-04-22 11:26:05 -07:00
"client",
2014-03-24 06:44:41 -07:00
"irc",
"server",
"thelounge"
2014-03-24 06:44:41 -07:00
],
2014-08-25 16:13:47 -07:00
"license": "MIT",
2016-04-26 03:51:11 -07:00
"engines": {
2019-12-26 10:59:25 -08:00
"node": ">=10.15.0"
2016-04-26 03:51:11 -07:00
},
2014-06-17 06:38:08 -07:00
"dependencies": {
"bcryptjs": "2.4.3",
2019-04-07 16:13:25 -07:00
"busboy": "0.3.1",
2020-06-14 02:33:35 -07:00
"chalk": "4.1.0",
2019-11-25 07:58:04 -08:00
"cheerio": "1.0.0-rc.3",
2020-10-30 06:10:50 -07:00
"commander": "6.2.0",
2019-05-25 21:30:27 -07:00
"express": "4.17.1",
2020-11-25 07:45:22 -08:00
"file-type": "16.0.1",
2020-09-30 07:41:56 -07:00
"filenamify": "4.2.0",
2020-10-23 01:52:04 -07:00
"got": "11.8.0",
"irc-framework": "4.9.0",
"is-utf8": "0.2.1",
2020-11-25 07:45:22 -08:00
"ldapjs": "2.2.2",
2020-05-20 05:31:33 -07:00
"linkify-it": "3.0.2",
2020-08-17 02:21:23 -07:00
"lodash": "4.17.20",
"mime-types": "2.1.27",
2020-09-02 00:38:16 -07:00
"node-forge": "0.10.0",
"package-json": "6.5.0",
2016-02-12 03:27:17 -08:00
"read": "1.0.7",
2019-04-06 12:07:51 -07:00
"read-chunk": "3.2.0",
2020-04-15 01:54:49 -07:00
"semver": "7.3.2",
2019-09-20 03:26:43 -07:00
"socket.io": "2.3.0",
2020-11-25 07:45:22 -08:00
"tlds": "1.214.0",
2020-09-18 01:49:09 -07:00
"ua-parser-js": "0.7.22",
2020-10-11 00:56:13 -07:00
"uuid": "8.3.1",
2020-05-10 04:25:47 -07:00
"web-push": "3.4.4",
2020-09-30 07:41:56 -07:00
"yarn": "1.22.10"
2014-06-17 06:38:08 -07:00
},
"optionalDependencies": {
2020-07-08 03:30:09 -07:00
"sqlite3": "5.0.0"
},
2014-06-17 06:38:08 -07:00
"devDependencies": {
2020-11-25 07:45:22 -08:00
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
2020-10-11 00:56:13 -07:00
"@fortawesome/fontawesome-free": "5.15.1",
2020-11-02 00:20:01 -08:00
"@vue/server-test-utils": "1.1.1",
"@vue/test-utils": "1.1.1",
2020-11-25 07:45:22 -08:00
"babel-loader": "8.2.1",
"babel-plugin-istanbul": "6.0.0",
2018-09-27 21:20:31 -07:00
"chai": "4.2.0",
"copy-webpack-plugin": "6.4.1",
2020-11-25 07:45:22 -08:00
"css-loader": "5.0.1",
2019-10-14 02:15:19 -07:00
"cssnano": "4.1.10",
2021-02-08 16:01:13 -08:00
"dayjs": "1.10.4",
2020-10-23 01:52:04 -07:00
"emoji-regex": "9.2.0",
2021-02-08 16:01:29 -08:00
"eslint": "7.19.0",
2020-10-30 06:10:50 -07:00
"eslint-config-prettier": "6.15.0",
"eslint-plugin-vue": "7.5.0",
"fuzzy": "0.1.3",
2020-09-18 01:49:09 -07:00
"husky": "4.3.0",
2020-11-25 07:45:22 -08:00
"mini-css-extract-plugin": "1.3.1",
"mocha": "8.2.1",
2020-01-24 16:51:35 -08:00
"mousetrap": "1.6.5",
"normalize.css": "8.0.1",
"npm-run-all": "4.1.5",
2020-06-05 19:35:13 -07:00
"nyc": "15.1.0",
2020-11-25 07:45:22 -08:00
"postcss": "8.1.10",
2020-10-23 01:52:04 -07:00
"postcss-import": "13.0.0",
2020-11-25 07:45:22 -08:00
"postcss-loader": "4.1.0",
2019-10-14 02:15:19 -07:00
"postcss-preset-env": "6.7.0",
2020-11-25 07:45:22 -08:00
"prettier": "2.2.0",
2020-10-15 02:22:49 -07:00
"pretty-quick": "3.1.0",
"primer-tooltips": "2.0.0",
2020-10-30 06:10:50 -07:00
"sinon": "9.2.1",
2020-10-11 00:56:13 -07:00
"socket.io-client": "2.3.1",
2020-11-25 07:45:22 -08:00
"stylelint": "13.8.0",
"stylelint-config-standard": "20.0.0",
"textcomplete": "0.18.2",
"undate": "0.3.0",
2020-08-20 09:43:53 -07:00
"vue": "2.6.12",
2020-11-02 00:20:01 -08:00
"vue-loader": "15.9.5",
2020-11-25 07:45:22 -08:00
"vue-router": "3.4.9",
2020-08-20 09:43:53 -07:00
"vue-server-renderer": "2.6.12",
"vue-template-compiler": "2.6.12",
2020-10-30 06:10:50 -07:00
"vuedraggable": "2.24.3",
2020-07-03 19:47:28 -07:00
"vuex": "3.5.1",
2020-11-25 07:45:22 -08:00
"webpack": "5.6.0",
"webpack-cli": "4.2.0",
"webpack-dev-middleware": "4.0.2",
"webpack-hot-middleware": "2.25.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
2014-03-24 06:44:41 -07:00
}
2014-03-04 08:31:52 -08:00
}