2020-08-23 00:04:58 -04:00
|
|
|
{
|
2020-09-15 12:22:50 -05:00
|
|
|
"name": "lemmy-ui",
|
2023-03-26 22:06:42 -04:00
|
|
|
"description": "An isomorphic UI for lemmy",
|
2024-12-04 13:38:53 -05:00
|
|
|
"version": "0.19.8-beta.6",
|
2023-03-26 22:06:42 -04:00
|
|
|
"author": "Dessalines <tyhou13@gmx.com>",
|
2024-01-19 15:48:24 -05:00
|
|
|
"license": "AGPL-3.0",
|
2020-08-23 00:04:58 -04:00
|
|
|
"scripts": {
|
2023-06-22 19:33:02 -04:00
|
|
|
"analyze": "webpack --mode=none",
|
2023-07-12 17:03:49 +03:00
|
|
|
"build:dev": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=development",
|
2023-06-29 10:29:33 -04:00
|
|
|
"build:prod": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=production",
|
2024-01-28 22:09:08 -05:00
|
|
|
"clean": "pnpm rimraf dist",
|
2024-04-09 10:03:09 -04:00
|
|
|
"dev": "node generate_translations.js && pnpm build:dev --watch",
|
2024-07-15 10:00:39 -04:00
|
|
|
"lint": "pnpm translations:generate && tsc --noEmit && pnpm eslint --report-unused-disable-directives && pnpm prettier --check \"src/**/*.{ts,tsx,js,mjs,css,scss}\"",
|
2024-01-28 22:09:08 -05:00
|
|
|
"prebuild:dev": "pnpm clean && node generate_translations.js",
|
|
|
|
"prebuild:prod": "pnpm clean && node generate_translations.js",
|
|
|
|
"prepare": "husky",
|
2023-06-14 01:04:53 +02:00
|
|
|
"themes:build": "sass src/assets/css/themes/:src/assets/css/themes",
|
2023-06-20 11:57:09 +00:00
|
|
|
"themes:watch": "sass --watch src/assets/css/themes/:src/assets/css/themes",
|
|
|
|
"translations:generate": "node generate_translations.js",
|
2024-01-28 22:09:08 -05:00
|
|
|
"translations:init": "git submodule init && pnpm translations:update",
|
2023-06-20 11:57:09 +00:00
|
|
|
"translations:update": "git submodule update --remote --recursive"
|
2020-08-23 00:04:58 -04:00
|
|
|
},
|
2024-01-19 15:48:24 -05:00
|
|
|
"repository": "https://github.com/LemmyNet/lemmy-ui",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.9.0"
|
2023-03-26 22:06:42 -04:00
|
|
|
},
|
2020-08-23 00:04:58 -04:00
|
|
|
"dependencies": {
|
2024-06-05 15:24:28 +00:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.24.7",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@babel/plugin-transform-class-properties": "^7.25.4",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.25.4",
|
2024-08-01 19:03:16 +00:00
|
|
|
"@babel/plugin-transform-typescript": "^7.25.2",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@babel/preset-env": "^7.25.4",
|
2024-06-05 15:24:28 +00:00
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@babel/runtime": "^7.25.4",
|
2024-05-21 14:20:32 -04:00
|
|
|
"@emoji-mart/data": "^1.2.1",
|
2023-02-21 16:15:13 -05:00
|
|
|
"autosize": "^6.0.1",
|
2023-11-23 22:03:28 -05:00
|
|
|
"babel-loader": "^9.1.3",
|
2024-01-19 15:48:24 -05:00
|
|
|
"babel-plugin-inferno": "^6.7.1",
|
2024-02-27 00:16:41 +00:00
|
|
|
"bootstrap": "^5.3.3",
|
2024-03-26 19:03:02 -04:00
|
|
|
"check-password-strength": "^2.0.10",
|
2024-01-19 15:48:24 -05:00
|
|
|
"classnames": "^2.5.1",
|
2022-10-21 15:28:18 -04:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
2023-11-26 19:53:24 -05:00
|
|
|
"cookie": "^0.6.0",
|
2024-04-18 23:54:16 +00:00
|
|
|
"cookie-parser": "^1.4.6",
|
2024-01-19 15:48:24 -05:00
|
|
|
"copy-webpack-plugin": "^12.0.2",
|
2024-06-05 15:24:28 +00:00
|
|
|
"css-loader": "^7.1.2",
|
2024-03-26 19:03:02 -04:00
|
|
|
"date-fns": "^3.6.0",
|
2024-05-21 14:20:32 -04:00
|
|
|
"emoji-mart": "^5.6.0",
|
2022-03-29 16:39:30 +00:00
|
|
|
"emoji-short-name": "^2.0.0",
|
2024-03-26 19:03:02 -04:00
|
|
|
"express": "~4.19.2",
|
2024-08-01 19:03:16 +00:00
|
|
|
"highlight.js": "^11.10.0",
|
2023-06-14 12:20:40 +00:00
|
|
|
"history": "^5.3.0",
|
2023-05-11 13:06:32 -04:00
|
|
|
"html-to-text": "^9.0.5",
|
2024-08-19 23:41:52 +00:00
|
|
|
"i18next": "^23.14.0",
|
2024-01-19 15:48:24 -05:00
|
|
|
"inferno": "^8.2.3",
|
|
|
|
"inferno-create-element": "^8.2.3",
|
2020-09-06 11:15:25 -05:00
|
|
|
"inferno-helmet": "^5.2.1",
|
2024-01-19 15:48:24 -05:00
|
|
|
"inferno-hydrate": "^8.2.3",
|
2022-09-22 11:03:35 -04:00
|
|
|
"inferno-i18next-dess": "0.0.2",
|
2024-01-19 15:48:24 -05:00
|
|
|
"inferno-router": "^8.2.3",
|
|
|
|
"inferno-server": "^8.2.3",
|
2023-11-26 19:53:24 -05:00
|
|
|
"jwt-decode": "^4.0.0",
|
2024-08-04 15:33:23 +00:00
|
|
|
"lemmy-js-client": "0.19.6-beta.1",
|
2023-06-24 00:06:19 -04:00
|
|
|
"lodash.isequal": "^4.5.0",
|
2024-03-26 19:03:02 -04:00
|
|
|
"markdown-it": "^14.1.0",
|
2023-10-19 20:47:28 -04:00
|
|
|
"markdown-it-bidi": "^0.1.0",
|
2024-01-19 15:48:24 -05:00
|
|
|
"markdown-it-container": "^4.0.0",
|
|
|
|
"markdown-it-emoji": "^3.0.0",
|
|
|
|
"markdown-it-footnote": "^4.0.0",
|
2024-05-21 14:20:32 -04:00
|
|
|
"markdown-it-highlightjs": "^4.1.0",
|
2021-09-18 15:44:39 -04:00
|
|
|
"markdown-it-html5-embed": "^1.0.0",
|
2023-07-06 20:44:32 +09:00
|
|
|
"markdown-it-ruby": "^0.1.1",
|
2024-01-19 15:48:24 -05:00
|
|
|
"markdown-it-sub": "^2.0.0",
|
|
|
|
"markdown-it-sup": "^2.0.0",
|
2024-08-19 23:41:52 +00:00
|
|
|
"mini-css-extract-plugin": "^2.9.1",
|
2024-08-01 19:03:16 +00:00
|
|
|
"qreator": "^9.3.0",
|
2020-12-23 21:00:15 -05:00
|
|
|
"register-service-worker": "^1.7.2",
|
2022-10-21 15:28:18 -04:00
|
|
|
"run-node-webpack-plugin": "^1.3.0",
|
2023-10-05 17:11:31 -04:00
|
|
|
"rxjs": "^7.8.1",
|
2024-03-26 19:03:02 -04:00
|
|
|
"sanitize-html": "^2.13.0",
|
2024-08-01 19:03:16 +00:00
|
|
|
"sass": "^1.77.8",
|
2024-08-19 23:41:52 +00:00
|
|
|
"sass-loader": "^16.0.1",
|
2024-01-19 15:48:24 -05:00
|
|
|
"serialize-javascript": "^6.0.2",
|
2023-05-14 23:45:21 -04:00
|
|
|
"service-worker-webpack": "^1.0.0",
|
2024-08-19 03:13:31 +00:00
|
|
|
"sharp": "0.33.5",
|
2021-11-11 14:58:29 -05:00
|
|
|
"tippy.js": "^6.3.7",
|
2022-07-29 23:44:10 -04:00
|
|
|
"toastify-js": "^1.12.0",
|
2020-09-06 11:15:25 -05:00
|
|
|
"tributejs": "^5.1.3",
|
2024-08-27 17:08:37 +00:00
|
|
|
"webpack": "^5.94.0",
|
2023-07-07 23:33:03 +00:00
|
|
|
"webpack-cli": "^5.1.4",
|
2023-06-14 12:20:40 +00:00
|
|
|
"webpack-node-externals": "^3.0.0"
|
2020-08-23 00:04:58 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-01 19:03:16 +00:00
|
|
|
"@babel/core": "^7.25.2",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@eslint/js": "^9.9.1",
|
2024-01-28 22:09:08 -05:00
|
|
|
"@types/autosize": "^4.0.3",
|
|
|
|
"@types/bootstrap": "^5.2.10",
|
2023-11-26 19:53:24 -05:00
|
|
|
"@types/cookie": "^0.6.0",
|
2024-04-18 23:54:16 +00:00
|
|
|
"@types/cookie-parser": "^1.4.7",
|
2024-01-28 22:09:08 -05:00
|
|
|
"@types/express": "^4.17.21",
|
|
|
|
"@types/html-to-text": "^9.0.4",
|
|
|
|
"@types/lodash.isequal": "^4.5.8",
|
2024-08-01 19:03:16 +00:00
|
|
|
"@types/markdown-it": "^14.1.2",
|
2024-05-21 14:20:32 -04:00
|
|
|
"@types/markdown-it-container": "^2.0.10",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@types/node": "^22.5.0",
|
|
|
|
"@types/path-browserify": "^1.0.3",
|
2024-08-19 23:41:52 +00:00
|
|
|
"@types/sanitize-html": "^2.13.0",
|
2024-01-28 22:09:08 -05:00
|
|
|
"@types/serialize-javascript": "^5.0.4",
|
|
|
|
"@types/toastify-js": "^1.12.3",
|
2024-08-27 17:08:37 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
|
|
|
"@typescript-eslint/parser": "^8.3.0",
|
|
|
|
"eslint": "^9.9.1",
|
2024-05-15 13:30:03 -04:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-05-21 14:20:32 -04:00
|
|
|
"eslint-plugin-inferno": "^7.34.0",
|
2024-08-01 19:03:16 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
|
|
"globals": "^15.9.0",
|
2024-08-27 17:08:37 +00:00
|
|
|
"husky": "^9.1.5",
|
2021-07-17 16:42:55 -04:00
|
|
|
"import-sort-style-module": "^6.0.0",
|
2024-08-19 23:41:52 +00:00
|
|
|
"lint-staged": "^15.2.9",
|
2024-08-01 19:03:16 +00:00
|
|
|
"prettier": "^3.3.3",
|
2021-07-17 16:42:55 -04:00
|
|
|
"prettier-plugin-import-sort": "^0.0.7",
|
2024-07-02 03:23:40 +00:00
|
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
2024-08-27 17:08:37 +00:00
|
|
|
"prettier-plugin-packagejson": "^2.5.2",
|
2024-08-01 19:03:16 +00:00
|
|
|
"qs": "^6.13.0",
|
|
|
|
"rimraf": "^6.0.1",
|
2024-01-19 15:48:24 -05:00
|
|
|
"sortpack": "^2.4.0",
|
2024-05-15 11:07:00 -04:00
|
|
|
"style-loader": "^4.0.0",
|
2024-08-19 23:41:52 +00:00
|
|
|
"terser": "^5.31.6",
|
2024-08-01 19:03:16 +00:00
|
|
|
"typescript": "^5.5.4",
|
2024-08-27 17:08:37 +00:00
|
|
|
"typescript-eslint": "^8.3.0",
|
2024-02-27 00:16:41 +00:00
|
|
|
"typescript-language-server": "^4.3.3",
|
2024-05-21 14:20:32 -04:00
|
|
|
"webpack-bundle-analyzer": "^4.10.2",
|
2024-03-26 19:03:02 -04:00
|
|
|
"webpack-dev-server": "5.0.4"
|
2020-08-23 00:04:58 -04:00
|
|
|
},
|
2024-01-19 15:48:24 -05:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{css, scss}": [
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"*.{ts,tsx,js}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint --fix"
|
|
|
|
],
|
|
|
|
"package.json": [
|
|
|
|
"sortpack"
|
|
|
|
]
|
2020-09-06 11:15:25 -05:00
|
|
|
},
|
2024-10-29 09:15:21 -04:00
|
|
|
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
|
2020-09-06 11:15:25 -05:00
|
|
|
"engineStrict": true,
|
2021-07-17 16:42:55 -04:00
|
|
|
"importSort": {
|
|
|
|
".js, .jsx, .ts, .tsx": {
|
|
|
|
"style": "module",
|
|
|
|
"parser": "typescript"
|
|
|
|
}
|
2020-08-23 00:04:58 -04:00
|
|
|
}
|
|
|
|
}
|