thelounge/package.json

173 lines
5.3 KiB
JSON
Raw Normal View History

2014-03-04 17:31:52 +01:00
{
"name": "thelounge",
2015-04-29 21:55:13 +02:00
"description": "The self-hosted Web IRC client",
2023-06-13 08:23:22 +02:00
"version": "4.4.1",
2014-08-13 23:35:20 +02:00
"preferGlobal": true,
"bin": {
"thelounge": "index.js"
2014-08-13 23:35:20 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/thelounge.git"
2014-08-13 23:35:20 +02:00
},
"homepage": "https://thelounge.chat/",
2014-08-13 23:35:20 +02:00
"scripts": {
"build:client": "webpack",
"build:server": "tsc -p server/tsconfig.json",
"build": "run-p --aggregate-output build:client build:server",
2020-03-22 11:47:41 +01:00
"coverage": "run-s test:* && nyc --nycrc-path=test/.nycrc-report.json report",
"dev": "cross-env NODE_ENV=development ts-node --project server/tsconfig.json server/index.ts start --dev",
"format:prettier": "prettier --write \"**/*.*\"",
"generate:config:doc": "ts-node scripts/generate-config-doc.js",
"lint:check-eslint": "eslint-config-prettier .eslintrc.cjs",
"lint:eslint": "eslint . --report-unused-disable-directives --color",
"lint:prettier": "prettier --list-different \"**/*.*\"",
"lint:stylelint": "stylelint --color \"client/**/*.css\"",
"lint": "run-p --aggregate-output --continue-on-error lint:*",
"start": "node index start",
2020-03-22 11:47:41 +01:00
"test": "run-p --aggregate-output --continue-on-error lint:* test:*",
"test:mocha": "cross-env NODE_ENV=test webpack --mode=development && cross-env NODE_ENV=test TS_NODE_PROJECT='./test/tsconfig.json' nyc --nycrc-path=test/.nycrc-mocha.json mocha --require ts-node/register --colors --config=test/.mocharc.yml",
"watch": "webpack --watch",
"githooks-install": "git config core.hooksPath scripts/git-hooks"
2014-03-24 14:44:41 +01:00
},
"keywords": [
2016-11-19 11:05:46 +01:00
"lounge",
2014-04-20 19:13:33 +02:00
"browser",
2014-06-26 18:14:45 +02:00
"web",
2014-03-24 14:44:41 +01:00
"chat",
2014-04-22 20:26:05 +02:00
"client",
2014-03-24 14:44:41 +01:00
"irc",
"server",
"thelounge"
2014-03-24 14:44:41 +01:00
],
2014-08-26 01:13:47 +02:00
"license": "MIT",
2016-04-26 12:51:11 +02:00
"engines": {
"node": ">=16.0.0"
2016-04-26 12:51:11 +02:00
},
"files": [
"./.thelounge_home",
"./index.js",
"./yarn.lock",
"./client/index.html.tpl",
"./dist/package.json",
"./dist/**/*.js",
"./public/**"
],
2014-06-17 15:38:08 +02:00
"dependencies": {
"@fastify/busboy": "1.0.0",
"bcryptjs": "2.4.3",
2021-09-15 19:12:19 +02:00
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.12",
2022-02-10 00:27:34 +01:00
"commander": "9.0.0",
"content-disposition": "0.5.4",
2022-04-01 02:57:31 +02:00
"express": "4.17.3",
"file-type": "16.5.4",
"filenamify": "4.3.0",
"got": "11.8.5",
2023-02-06 22:20:40 +01:00
"irc-framework": "4.13.1",
"is-utf8": "0.2.1",
2021-09-15 19:12:19 +02:00
"ldapjs": "2.3.1",
2021-11-01 01:21:41 +01:00
"linkify-it": "3.0.3",
"lodash": "4.17.21",
"mime-types": "2.1.34",
"node-forge": "1.3.0",
"package-json": "7.0.0",
2016-02-12 12:27:17 +01:00
"read": "1.0.7",
2019-04-06 21:07:51 +02:00
"read-chunk": "3.2.0",
"semver": "7.5.2",
2023-05-04 23:34:50 +02:00
"socket.io": "4.6.1",
2022-02-10 00:27:34 +01:00
"tlds": "1.228.0",
"ua-parser-js": "1.0.33",
2021-02-09 22:27:56 +01:00
"uuid": "8.3.2",
"web-push": "3.4.5",
"yarn": "1.22.17"
2014-06-17 15:38:08 +02:00
},
"optionalDependencies": {
"sqlite3": "5.1.6"
},
2014-06-17 15:38:08 +02:00
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/plugin-transform-runtime": "7.18.2",
"@babel/preset-env": "7.17.10",
2021-09-15 19:12:19 +02:00
"@fortawesome/fontawesome-free": "5.15.4",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@textcomplete/core": "0.1.10",
"@textcomplete/textarea": "0.1.12",
"@types/bcryptjs": "2.4.6",
"@types/chai": "4.3.5",
"@types/cheerio": "0.22.35",
"@types/content-disposition": "0.5.8",
"@types/express": "4.17.13",
"@types/is-utf8": "0.2.3",
"@types/ldapjs": "2.2.2",
"@types/linkify-it": "3.0.5",
"@types/lodash": "4.14.200",
"@types/mime-types": "2.1.1",
"@types/mocha": "9.1.1",
"@types/mousetrap": "1.6.13",
"@types/node": "17.0.31",
"@types/read": "0.0.29",
"@types/semver": "7.3.9",
"@types/sortablejs": "1.13.0",
"@types/sqlite3": "3.1.8",
"@types/ua-parser-js": "0.7.36",
"@types/uuid": "8.3.4",
"@types/web-push": "3.3.2",
"@types/webpack-env": "1.16.4",
"@types/webpack-hot-middleware": "2.25.6",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"@vue/runtime-dom": "3.2.33",
"@vue/test-utils": "2.4.0",
"babel-loader": "8.2.5",
"babel-plugin-istanbul": "6.1.1",
"babel-preset-typescript-vue3": "2.0.17",
"chai": "4.3.7",
2022-02-10 00:27:34 +01:00
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"css-loader": "6.5.1",
"cssnano": "5.0.17",
"dayjs": "1.10.8",
"emoji-regex": "10.2.1",
"eslint": "8.16.0",
2022-02-10 00:27:34 +01:00
"eslint-config-prettier": "8.3.0",
"eslint-define-config": "1.5.1",
"eslint-plugin-vue": "9.0.1",
"fork-ts-checker-webpack-plugin": "7.2.13",
"fuzzy": "0.1.3",
2022-02-10 00:27:34 +01:00
"mini-css-extract-plugin": "2.5.3",
"mocha": "9.2.2",
2020-01-25 01:51:35 +01:00
"mousetrap": "1.6.5",
"normalize.css": "8.0.1",
"npm-run-all": "4.1.5",
2020-06-06 04:35:13 +02:00
"nyc": "15.1.0",
"postcss": "8.4.31",
2021-09-15 19:12:19 +02:00
"postcss-import": "14.0.2",
"postcss-loader": "6.2.1",
2022-02-10 00:27:34 +01:00
"postcss-preset-env": "7.3.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"primer-tooltips": "2.0.0",
"sinon": "13.0.2",
2022-11-16 07:18:26 +01:00
"socket.io-client": "4.5.0",
"sortablejs": "1.15.0",
2022-02-10 00:27:34 +01:00
"stylelint": "14.3.0",
"stylelint-config-standard": "24.0.0",
"ts-loader": "9.3.0",
"ts-node": "10.7.0",
"ts-sinon": "2.0.2",
"typescript": "4.7.2",
"undate": "0.3.0",
"vue": "3.2.35",
"vue-eslint-parser": "8.3.0",
"vue-loader": "17.0.1",
"vue-router": "4.0.15",
"vuex": "4.0.2",
"webpack": "5.76.0",
2022-02-10 00:27:34 +01:00
"webpack-cli": "4.9.2",
"webpack-dev-middleware": "5.3.3",
"webpack-hot-middleware": "2.25.4"
2014-03-24 14:44:41 +01:00
}
2014-03-04 17:31:52 +01:00
}