2016-10-26 16:46:32 +02:00
|
|
|
{
|
|
|
|
"name": "pleroma_fe",
|
2024-09-04 17:02:08 +03:00
|
|
|
"version": "2.7.1",
|
2022-12-22 15:52:41 +02:00
|
|
|
"description": "Pleroma frontend, the default frontend of Pleroma social network server",
|
|
|
|
"author": "Pleroma contributors <https://git.pleroma.social/pleroma/pleroma-fe/-/blob/develop/CONTRIBUTORS.md>",
|
|
|
|
"private": false,
|
2016-10-26 16:46:32 +02:00
|
|
|
"scripts": {
|
2025-02-28 10:52:04 -05:00
|
|
|
"dev": "node build/update-emoji.js && vite dev",
|
|
|
|
"build": "node build/update-emoji.js && vite build",
|
2025-02-27 22:54:23 -05:00
|
|
|
"unit": "node build/update-emoji.js && vitest --run",
|
|
|
|
"unit-ci": "node build/update-emoji.js && vitest --run --browser.headless",
|
|
|
|
"unit:watch": "node build/update-emoji.js && vitest",
|
2016-10-26 16:46:32 +02:00
|
|
|
"e2e": "node test/e2e/runner.js",
|
2025-01-07 20:31:07 -05:00
|
|
|
"test": "yarn run unit && yarn run e2e",
|
|
|
|
"stylelint": "yarn exec stylelint '**/*.scss' '**/*.vue'",
|
2025-02-04 14:13:26 +02:00
|
|
|
"lint": "eslint src test/unit/specs test/e2e/specs",
|
|
|
|
"lint-fix": "eslint --fix src test/unit/specs test/e2e/specs"
|
2016-10-26 16:46:32 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-03-12 09:04:21 +00:00
|
|
|
"@babel/runtime": "7.26.10",
|
2022-03-29 15:44:42 +03:00
|
|
|
"@chenfengyuan/vue-qrcode": "2.0.0",
|
2025-01-20 08:51:50 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "6.7.2",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "6.7.2",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "6.7.2",
|
|
|
|
"@fortawesome/vue-fontawesome": "3.0.8",
|
2022-03-14 09:05:10 +00:00
|
|
|
"@kazvmoe-infra/pinch-zoom-element": "1.2.0",
|
2022-10-02 09:06:29 +00:00
|
|
|
"@kazvmoe-infra/unicode-emoji-json": "0.4.0",
|
2025-01-13 09:04:19 +00:00
|
|
|
"@ruffle-rs/ruffle": "0.1.0-nightly.2025.1.13",
|
2023-10-06 09:10:07 +00:00
|
|
|
"@vuelidate/core": "2.0.3",
|
2023-12-12 09:06:18 +00:00
|
|
|
"@vuelidate/validators": "2.0.4",
|
2025-02-28 10:52:04 -05:00
|
|
|
"@web3-storage/parse-link-header": "^3.1.0",
|
2022-07-25 09:09:02 +00:00
|
|
|
"body-scroll-lock": "3.1.5",
|
2022-03-10 09:06:57 +00:00
|
|
|
"chromatism": "3.0.0",
|
2022-03-29 15:44:42 +03:00
|
|
|
"click-outside-vue3": "4.0.1",
|
2025-01-18 08:51:47 +00:00
|
|
|
"cropperjs": "1.6.2",
|
2022-03-10 09:06:57 +00:00
|
|
|
"escape-html": "1.0.3",
|
2025-02-23 09:05:29 +00:00
|
|
|
"globals": "^16.0.0",
|
2024-04-22 23:40:39 +03:00
|
|
|
"hash-sum": "^2.0.0",
|
2023-05-03 09:07:55 +00:00
|
|
|
"js-cookie": "3.0.5",
|
2022-03-21 18:16:34 +00:00
|
|
|
"localforage": "1.10.0",
|
2022-09-20 19:27:26 -04:00
|
|
|
"parse-link-header": "2.0.0",
|
2025-02-21 09:05:04 +00:00
|
|
|
"phoenix": "1.7.20",
|
2025-01-30 21:56:07 +02:00
|
|
|
"pinia": "^2.0.33",
|
2025-01-14 08:52:27 +00:00
|
|
|
"punycode.js": "2.3.1",
|
2025-01-15 08:51:51 +00:00
|
|
|
"qrcode": "1.5.4",
|
2022-08-18 09:06:24 +00:00
|
|
|
"querystring-es3": "0.2.1",
|
2025-01-16 09:04:41 +00:00
|
|
|
"url": "0.11.4",
|
2022-08-14 09:06:47 +00:00
|
|
|
"utf8": "3.0.0",
|
2025-01-19 17:54:35 +02:00
|
|
|
"vue": "3.5.13",
|
2025-01-02 22:47:53 +02:00
|
|
|
"vue-i18n": "10",
|
2025-01-19 17:54:35 +02:00
|
|
|
"vue-router": "4.5.0",
|
2022-12-24 13:48:36 -05:00
|
|
|
"vue-virtual-scroller": "^2.0.0-beta.7",
|
2022-10-31 09:10:35 +00:00
|
|
|
"vuex": "4.1.0"
|
2016-10-26 16:46:32 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2025-03-12 09:04:21 +00:00
|
|
|
"@babel/core": "7.26.10",
|
|
|
|
"@babel/eslint-parser": "7.26.10",
|
|
|
|
"@babel/plugin-transform-runtime": "7.26.10",
|
2025-02-15 09:05:14 +00:00
|
|
|
"@babel/preset-env": "7.26.9",
|
2025-01-16 09:04:55 +00:00
|
|
|
"@babel/register": "7.25.9",
|
2023-04-12 09:11:09 +00:00
|
|
|
"@ungap/event-target": "0.2.4",
|
2025-02-28 10:52:04 -05:00
|
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
2025-02-27 22:54:23 -05:00
|
|
|
"@vitest/browser": "^3.0.7",
|
|
|
|
"@vitest/ui": "^3.0.7",
|
2022-08-26 09:06:47 +00:00
|
|
|
"@vue/babel-helper-vue-jsx-merge-props": "1.4.0",
|
2025-03-10 09:05:51 +00:00
|
|
|
"@vue/babel-plugin-jsx": "1.4.0",
|
2025-01-19 17:54:35 +02:00
|
|
|
"@vue/compiler-sfc": "3.5.13",
|
2025-01-17 08:51:39 +00:00
|
|
|
"@vue/test-utils": "2.4.6",
|
2025-03-11 09:05:43 +00:00
|
|
|
"autoprefixer": "10.4.21",
|
2022-03-10 09:06:57 +00:00
|
|
|
"babel-plugin-lodash": "3.3.4",
|
2025-01-18 08:51:34 +00:00
|
|
|
"chai": "4.5.0",
|
2025-02-01 08:52:21 +00:00
|
|
|
"chalk": "5.4.1",
|
2025-03-14 09:06:28 +00:00
|
|
|
"chromedriver": "134.0.3",
|
2022-08-11 09:08:31 +00:00
|
|
|
"connect-history-api-fallback": "2.0.0",
|
2025-01-10 09:04:44 +00:00
|
|
|
"cross-spawn": "7.0.6",
|
2022-03-10 09:06:57 +00:00
|
|
|
"custom-event-polyfill": "1.0.7",
|
2025-03-08 09:05:54 +00:00
|
|
|
"eslint": "9.22.0",
|
2025-01-20 08:52:04 +00:00
|
|
|
"eslint-config-standard": "17.1.0",
|
2022-07-31 12:15:44 +03:00
|
|
|
"eslint-formatter-friendly": "7.0.0",
|
2025-01-20 08:52:22 +00:00
|
|
|
"eslint-plugin-import": "2.31.0",
|
2025-03-06 08:52:36 +00:00
|
|
|
"eslint-plugin-n": "17.16.2",
|
2025-02-06 09:04:43 +00:00
|
|
|
"eslint-plugin-promise": "7.2.1",
|
2025-03-08 09:06:04 +00:00
|
|
|
"eslint-plugin-vue": "9.33.0",
|
2022-03-10 09:06:57 +00:00
|
|
|
"eventsource-polyfill": "0.9.6",
|
2025-01-09 09:04:57 +00:00
|
|
|
"express": "4.21.2",
|
2025-01-14 08:51:47 +00:00
|
|
|
"function-bind": "1.1.2",
|
2025-02-11 08:52:32 +00:00
|
|
|
"http-proxy-middleware": "3.0.3",
|
2025-02-07 09:04:50 +00:00
|
|
|
"iso-639-1": "3.1.5",
|
2022-03-12 09:07:19 +00:00
|
|
|
"lodash": "4.17.21",
|
2025-03-09 15:06:19 -04:00
|
|
|
"msw": "2.7.3",
|
2025-03-19 09:04:22 +00:00
|
|
|
"nightwatch": "3.12.1",
|
2022-03-22 09:06:15 +00:00
|
|
|
"ora": "0.4.1",
|
2025-02-27 22:54:23 -05:00
|
|
|
"playwright": "1.49.1",
|
2025-03-05 09:05:45 +00:00
|
|
|
"postcss": "8.5.3",
|
2023-01-09 11:11:37 -05:00
|
|
|
"postcss-html": "^1.5.0",
|
|
|
|
"postcss-scss": "^4.0.6",
|
2025-03-05 09:05:55 +00:00
|
|
|
"sass": "1.85.1",
|
2023-05-03 09:08:20 +00:00
|
|
|
"selenium-server": "3.141.59",
|
2025-02-04 09:04:28 +00:00
|
|
|
"semver": "7.7.1",
|
2025-02-26 20:23:10 -05:00
|
|
|
"serve-static": "1.16.2",
|
2025-03-19 09:04:28 +00:00
|
|
|
"shelljs": "0.9.2",
|
2025-01-28 08:52:46 +00:00
|
|
|
"sinon": "15.2.0",
|
2022-08-29 09:08:30 +00:00
|
|
|
"sinon-chai": "3.7.0",
|
2023-01-07 09:08:31 +00:00
|
|
|
"stylelint": "14.16.1",
|
2023-01-09 11:11:37 -05:00
|
|
|
"stylelint-config-html": "^1.1.0",
|
|
|
|
"stylelint-config-recommended-scss": "^8.0.0",
|
|
|
|
"stylelint-config-recommended-vue": "^1.4.0",
|
|
|
|
"stylelint-config-standard": "29.0.0",
|
2022-03-10 09:06:57 +00:00
|
|
|
"stylelint-rscss": "0.4.0",
|
2025-02-28 10:52:04 -05:00
|
|
|
"vite": "^6.1.0",
|
2025-02-28 15:15:28 -05:00
|
|
|
"vite-plugin-eslint2": "^5.0.3",
|
|
|
|
"vite-plugin-stylelint": "^6.0.0",
|
2025-02-28 16:17:47 -05:00
|
|
|
"vitest": "^3.0.7"
|
2016-10-26 16:46:32 +02:00
|
|
|
},
|
2025-02-28 10:52:04 -05:00
|
|
|
"type": "module",
|
2016-10-26 16:46:32 +02:00
|
|
|
"engines": {
|
2025-01-07 20:31:07 -05:00
|
|
|
"node": ">= 16.0.0"
|
2024-10-03 21:52:44 +02:00
|
|
|
},
|
|
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
2016-10-26 16:46:32 +02:00
|
|
|
}
|