2020-02-21 10:20:55 +00:00
|
|
|
{
|
2022-07-04 19:10:16 +00:00
|
|
|
"name": "authentik-web",
|
|
|
|
"version": "0.0.0",
|
2021-02-03 20:18:31 +00:00
|
|
|
"private": true,
|
2020-12-24 15:01:55 +00:00
|
|
|
"license": "GNU GPLv3",
|
2020-11-21 19:48:49 +00:00
|
|
|
"scripts": {
|
2021-04-03 17:07:11 +00:00
|
|
|
"extract": "lingui extract",
|
|
|
|
"build": "lingui compile && rollup -c ./rollup.config.js",
|
2021-11-26 13:18:51 +00:00
|
|
|
"build-proxy": "lingui compile && rollup -c ./rollup.proxy.js",
|
2021-04-03 17:07:11 +00:00
|
|
|
"watch": "lingui compile && rollup -c -w",
|
2021-07-09 17:06:30 +00:00
|
|
|
"lint": "eslint . --max-warnings 0 --fix",
|
2021-08-03 15:52:21 +00:00
|
|
|
"lit-analyse": "lit-analyzer src",
|
|
|
|
"prettier-check": "prettier --check .",
|
2021-09-15 20:43:03 +00:00
|
|
|
"prettier": "prettier --write .",
|
2022-06-10 21:33:14 +00:00
|
|
|
"background-image": "npx @squoosh/cli -d src/assets/images --resize '{\"enabled\":true,\"width\":2560,\"method\":\"lanczos3\",\"fitMethod\":\"contain\",\"premultiply\":true,\"linearRGB\":true}' --mozjpeg '{\"quality\":75,\"baseline\":false,\"arithmetic\":false,\"progressive\":true,\"optimize_coding\":true,\"smoothing\":0,\"color_space\":3,\"quant_table\":3,\"trellis_multipass\":false,\"trellis_opt_zero\":false,\"trellis_opt_table\":false,\"trellis_loops\":1,\"auto_subsample\":true,\"chroma_subsample\":2,\"separate_chroma_quality\":false,\"chroma_quality\":75}' src/assets/images/flow_background.jpg"
|
2020-11-21 19:48:49 +00:00
|
|
|
},
|
2021-04-03 17:07:11 +00:00
|
|
|
"lingui": {
|
|
|
|
"sourceLocale": "en",
|
2021-04-04 21:19:08 +00:00
|
|
|
"locales": [
|
|
|
|
"en",
|
2021-10-01 12:06:32 +00:00
|
|
|
"pseudo-LOCALE",
|
2021-12-30 15:56:28 +00:00
|
|
|
"fr_FR",
|
2022-01-30 20:43:55 +00:00
|
|
|
"tr",
|
2022-01-31 11:50:05 +00:00
|
|
|
"es",
|
2022-02-09 09:08:49 +00:00
|
|
|
"pl",
|
|
|
|
"zh_TW",
|
|
|
|
"zh-Hans",
|
2022-02-11 21:09:05 +00:00
|
|
|
"zh-Hant",
|
|
|
|
"de"
|
2021-04-04 21:19:08 +00:00
|
|
|
],
|
2021-05-19 22:06:10 +00:00
|
|
|
"formatOptions": {
|
|
|
|
"lineNumbers": false
|
|
|
|
},
|
2021-04-03 17:26:43 +00:00
|
|
|
"pseudoLocale": "pseudo-LOCALE",
|
|
|
|
"fallbackLocales": {
|
2021-10-05 12:53:02 +00:00
|
|
|
"pseudo-LOCALE": "en",
|
|
|
|
"default": "en"
|
2021-04-03 17:26:43 +00:00
|
|
|
},
|
2021-10-05 12:53:02 +00:00
|
|
|
"format": "po-gettext",
|
2021-04-03 17:07:11 +00:00
|
|
|
"compileNamespace": "ts",
|
|
|
|
"catalogs": [
|
|
|
|
{
|
|
|
|
"path": "src/locales/{locale}",
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules/**",
|
|
|
|
"**/dist/**"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-11-21 19:48:49 +00:00
|
|
|
"dependencies": {
|
2022-10-21 07:08:48 +00:00
|
|
|
"@babel/core": "^7.19.6",
|
2022-10-21 07:06:59 +00:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.19.6",
|
2022-10-21 07:09:27 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
2022-10-11 08:31:41 +00:00
|
|
|
"@babel/preset-env": "^7.19.4",
|
2022-06-28 07:27:57 +00:00
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
2022-09-28 07:55:27 +00:00
|
|
|
"@codemirror/lang-html": "^6.1.2",
|
2022-09-21 06:57:31 +00:00
|
|
|
"@codemirror/lang-javascript": "^6.1.0",
|
2022-10-20 08:04:36 +00:00
|
|
|
"@codemirror/lang-python": "^6.0.3",
|
2022-07-01 13:46:27 +00:00
|
|
|
"@codemirror/lang-xml": "^6.0.0",
|
|
|
|
"@codemirror/legacy-modes": "^6.1.0",
|
2022-10-13 09:55:27 +00:00
|
|
|
"@formatjs/intl-listformat": "^7.1.3",
|
2022-08-31 07:53:19 +00:00
|
|
|
"@fortawesome/fontawesome-free": "^6.2.0",
|
2022-10-21 20:35:21 +00:00
|
|
|
"@goauthentik/api": "^2022.10.0-1666383274",
|
2022-07-04 19:59:57 +00:00
|
|
|
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
|
2022-06-23 07:46:23 +00:00
|
|
|
"@lingui/cli": "^3.14.0",
|
2022-06-23 07:48:02 +00:00
|
|
|
"@lingui/core": "^3.14.0",
|
2022-06-23 07:44:51 +00:00
|
|
|
"@lingui/detect-locale": "^3.14.0",
|
2022-06-23 07:46:07 +00:00
|
|
|
"@lingui/macro": "^3.14.0",
|
2022-10-13 09:56:49 +00:00
|
|
|
"@patternfly/patternfly": "^4.217.1",
|
2021-03-24 23:02:35 +00:00
|
|
|
"@polymer/iron-form": "^3.0.1",
|
2021-03-29 08:09:43 +00:00
|
|
|
"@polymer/paper-input": "^3.2.1",
|
2022-10-24 07:53:36 +00:00
|
|
|
"@rollup/plugin-babel": "^6.0.2",
|
2022-10-21 07:07:25 +00:00
|
|
|
"@rollup/plugin-commonjs": "^23.0.1",
|
2022-10-11 08:28:26 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^15.0.0",
|
2022-10-11 08:26:39 +00:00
|
|
|
"@rollup/plugin-replace": "^5.0.0",
|
2022-10-11 08:33:40 +00:00
|
|
|
"@rollup/plugin-typescript": "^9.0.1",
|
2022-10-20 08:14:09 +00:00
|
|
|
"@sentry/browser": "^7.16.0",
|
2022-10-20 08:04:21 +00:00
|
|
|
"@sentry/tracing": "^7.16.0",
|
2021-09-15 20:43:03 +00:00
|
|
|
"@squoosh/cli": "^0.7.2",
|
2022-10-21 07:07:12 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
|
2022-04-25 10:27:40 +00:00
|
|
|
"@types/chart.js": "^2.9.37",
|
2021-10-12 06:33:01 +00:00
|
|
|
"@types/codemirror": "5.60.5",
|
2022-03-17 08:46:23 +00:00
|
|
|
"@types/grecaptcha": "^3.0.4",
|
2022-09-21 07:58:23 +00:00
|
|
|
"@types/mermaid": "^9.1.0",
|
2022-10-18 07:31:02 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
2022-10-18 07:49:08 +00:00
|
|
|
"@typescript-eslint/parser": "^5.40.1",
|
2022-10-21 07:07:32 +00:00
|
|
|
"@webcomponents/webcomponentsjs": "^2.7.0",
|
2021-05-06 06:42:54 +00:00
|
|
|
"babel-plugin-macros": "^3.1.0",
|
2022-06-25 15:44:17 +00:00
|
|
|
"babel-plugin-tsconfig-paths": "^1.0.3",
|
2021-02-17 19:49:58 +00:00
|
|
|
"base64-js": "^1.5.1",
|
2022-08-04 08:10:19 +00:00
|
|
|
"chart.js": "^3.9.1",
|
2021-04-05 09:28:22 +00:00
|
|
|
"chartjs-adapter-moment": "^1.0.0",
|
2022-07-01 13:46:27 +00:00
|
|
|
"codemirror": "^6.0.1",
|
2022-01-31 11:09:13 +00:00
|
|
|
"construct-style-sheets-polyfill": "^3.1.0",
|
2022-06-01 07:29:05 +00:00
|
|
|
"country-flag-icons": "^1.5.5",
|
2022-10-24 07:54:43 +00:00
|
|
|
"eslint": "^8.26.0",
|
2021-04-03 17:07:11 +00:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2022-03-28 07:41:52 +00:00
|
|
|
"eslint-plugin-custom-elements": "0.0.6",
|
2021-10-20 07:13:52 +00:00
|
|
|
"eslint-plugin-lit": "^1.6.1",
|
2022-05-11 07:58:59 +00:00
|
|
|
"fuse.js": "^6.6.2",
|
2022-10-06 08:20:16 +00:00
|
|
|
"lit": "^2.4.0",
|
2022-09-21 07:58:23 +00:00
|
|
|
"mermaid": "^9.1.7",
|
2022-07-06 20:18:05 +00:00
|
|
|
"moment": "^2.29.4",
|
2022-06-17 07:38:46 +00:00
|
|
|
"prettier": "^2.7.1",
|
2022-10-19 07:31:32 +00:00
|
|
|
"pyright": "^1.1.276",
|
2022-07-04 20:00:11 +00:00
|
|
|
"rapidoc": "^9.3.3",
|
2022-09-23 07:21:35 +00:00
|
|
|
"rollup": "^2.79.1",
|
2021-02-19 08:21:34 +00:00
|
|
|
"rollup-plugin-copy": "^3.4.0",
|
2022-08-23 07:23:10 +00:00
|
|
|
"rollup-plugin-cssimport": "^1.0.3",
|
2021-03-10 08:14:16 +00:00
|
|
|
"rollup-plugin-minify-html-literals": "^1.2.6",
|
2020-12-01 08:15:41 +00:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2020-12-02 14:44:40 +00:00
|
|
|
"ts-lit-plugin": "^1.2.1",
|
2022-04-25 10:29:54 +00:00
|
|
|
"tslib": "^2.4.0",
|
2022-09-28 07:56:20 +00:00
|
|
|
"typescript": "^4.8.4",
|
2022-03-16 08:28:51 +00:00
|
|
|
"webcomponent-qr-code": "^1.0.6",
|
2022-10-06 08:20:09 +00:00
|
|
|
"yaml": "^2.1.3"
|
2021-08-23 14:47:56 +00:00
|
|
|
}
|
2020-02-21 10:20:55 +00:00
|
|
|
}
|