hardlounge/package.json

133 lines
3.6 KiB
JSON
Raw Normal View History

2014-03-04 11:31:52 -05:00
{
"name": "thelounge",
2015-04-29 15:55:13 -04:00
"description": "The self-hosted Web IRC client",
2021-11-22 19:54:39 -05:00
"version": "4.3.0",
2014-08-13 17:35:20 -04:00
"preferGlobal": true,
"bin": {
"thelounge": "index.js"
2014-08-13 17:35:20 -04:00
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/thelounge.git"
2014-08-13 17:35:20 -04:00
},
"homepage": "https://thelounge.chat/",
2014-08-13 17:35:20 -04:00
"scripts": {
2017-11-27 04:45:58 -05:00
"build": "webpack",
2020-03-22 06:47:41 -04: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 05:32:26 -04: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 06:47:41 -04: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 09:44:41 -04:00
},
"keywords": [
2016-11-19 05:05:46 -05:00
"lounge",
2014-04-20 13:13:33 -04:00
"browser",
2014-06-26 12:14:45 -04:00
"web",
2014-03-24 09:44:41 -04:00
"chat",
2014-04-22 14:26:05 -04:00
"client",
2014-03-24 09:44:41 -04:00
"irc",
"server",
"thelounge"
2014-03-24 09:44:41 -04:00
],
2014-08-25 19:13:47 -04:00
"license": "MIT",
2016-04-26 06:51:11 -04:00
"engines": {
"node": ">=12.0.0"
2016-04-26 06:51:11 -04:00
},
2014-06-17 09:38:08 -04:00
"dependencies": {
"bcryptjs": "2.4.3",
2019-04-07 19:13:25 -04:00
"busboy": "0.3.1",
2021-09-15 13:12:19 -04:00
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.10",
2021-04-05 19:18:45 -04:00
"commander": "7.2.0",
"content-disposition": "0.5.3",
2019-05-26 00:30:27 -04:00
"express": "4.17.1",
"file-type": "16.5.3",
"filenamify": "4.3.0",
"got": "11.8.3",
"irc-framework": "4.12.0",
"is-utf8": "0.2.1",
2021-09-15 13:12:19 -04:00
"ldapjs": "2.3.1",
2021-10-31 20:21:41 -04:00
"linkify-it": "3.0.3",
"lodash": "4.17.21",
"mime-types": "2.1.34",
2020-09-02 03:38:16 -04:00
"node-forge": "0.10.0",
"package-json": "6.5.0",
2016-02-12 06:27:17 -05:00
"read": "1.0.7",
2019-04-06 15:07:51 -04:00
"read-chunk": "3.2.0",
2021-09-15 13:12:19 -04:00
"semver": "7.3.5",
2020-11-25 11:02:48 -05:00
"socket.io": "3.1.2",
"tlds": "1.226.0",
"ua-parser-js": "1.0.2",
2021-02-09 16:27:56 -05:00
"uuid": "8.3.2",
"web-push": "3.4.5",
"yarn": "1.22.17"
2014-06-17 09:38:08 -04:00
},
"optionalDependencies": {
2021-03-03 00:37:04 -05:00
"sqlite3": "5.0.2"
},
2014-06-17 09:38:08 -04:00
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
2021-09-15 13:12:19 -04:00
"@fortawesome/fontawesome-free": "5.15.4",
"@vue/server-test-utils": "1.3.0",
"@vue/test-utils": "1.3.0",
"babel-loader": "8.2.3",
"babel-plugin-istanbul": "6.1.1",
2021-04-05 16:38:41 -04:00
"chai": "4.3.4",
2021-02-09 16:27:56 -05:00
"copy-webpack-plugin": "7.0.0",
"css-loader": "5.2.7",
"cssnano": "4.1.11",
2021-09-15 13:12:19 -04:00
"dayjs": "1.10.7",
2021-07-06 04:29:53 -04:00
"emoji-regex": "9.2.2",
"eslint": "7.32.0",
2020-10-30 09:10:50 -04:00
"eslint-config-prettier": "6.15.0",
"eslint-plugin-vue": "7.20.0",
"fuzzy": "0.1.3",
2021-07-06 04:29:53 -04:00
"husky": "4.3.8",
"mini-css-extract-plugin": "1.6.2",
"mocha": "8.4.0",
2020-01-24 19:51:35 -05:00
"mousetrap": "1.6.5",
"normalize.css": "8.0.1",
"npm-run-all": "4.1.5",
2020-06-05 22:35:13 -04:00
"nyc": "15.1.0",
"postcss": "8.2.10",
2021-09-15 13:12:19 -04:00
"postcss-import": "14.0.2",
"postcss-loader": "5.3.0",
2019-10-14 05:15:19 -04:00
"postcss-preset-env": "6.7.0",
2021-02-09 16:27:56 -05:00
"prettier": "2.2.1",
"pretty-quick": "3.1.2",
"primer-tooltips": "2.0.0",
"sinon": "12.0.1",
"socket.io-client": "3.1.3",
"stylelint": "13.13.1",
"stylelint-config-standard": "20.0.0",
"textcomplete": "0.18.2",
"undate": "0.3.0",
"vue": "2.6.14",
"vue-loader": "15.9.8",
"vue-router": "3.5.3",
"vue-server-renderer": "2.6.14",
"vue-template-compiler": "2.6.14",
2020-10-30 09:10:50 -04:00
"vuedraggable": "2.24.3",
2021-02-09 16:27:56 -05:00
"vuex": "3.6.2",
"webpack": "5.21.2",
"webpack-cli": "4.9.1",
"webpack-dev-middleware": "5.2.2",
"webpack-hot-middleware": "2.25.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"resolutions": {
"sortablejs": "git+https://github.com/thelounge/Sortable.git"
2014-03-24 09:44:41 -04:00
}
2014-03-04 11:31:52 -05:00
}