2020-02-21 10:20:55 +00:00
|
|
|
{
|
2022-06-27 20:31:54 +01:00
|
|
|
"name": "@goauthentik/web",
|
|
|
|
"version": "2022.6.3",
|
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 18:07:11 +01: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 18:07:11 +01:00
|
|
|
"watch": "lingui compile && rollup -c -w",
|
2021-07-09 18:06:30 +01:00
|
|
|
"lint": "eslint . --max-warnings 0 --fix",
|
2021-08-03 16:52:21 +01:00
|
|
|
"lit-analyse": "lit-analyzer src",
|
|
|
|
"prettier-check": "prettier --check .",
|
2021-09-15 21:43:03 +01:00
|
|
|
"prettier": "prettier --write .",
|
2022-06-10 22:33:14 +01: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 18:07:11 +01:00
|
|
|
"lingui": {
|
|
|
|
"sourceLocale": "en",
|
2021-04-04 22:19:08 +01:00
|
|
|
"locales": [
|
|
|
|
"en",
|
2021-10-01 13:06:32 +01: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 22:19:08 +01:00
|
|
|
],
|
2021-05-19 23:06:10 +01:00
|
|
|
"formatOptions": {
|
|
|
|
"lineNumbers": false
|
|
|
|
},
|
2021-04-03 18:26:43 +01:00
|
|
|
"pseudoLocale": "pseudo-LOCALE",
|
|
|
|
"fallbackLocales": {
|
2021-10-05 13:53:02 +01:00
|
|
|
"pseudo-LOCALE": "en",
|
|
|
|
"default": "en"
|
2021-04-03 18:26:43 +01:00
|
|
|
},
|
2021-10-05 13:53:02 +01:00
|
|
|
"format": "po-gettext",
|
2021-04-03 18:07:11 +01:00
|
|
|
"compileNamespace": "ts",
|
|
|
|
"catalogs": [
|
|
|
|
{
|
|
|
|
"path": "src/locales/{locale}",
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules/**",
|
|
|
|
"**/dist/**"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-11-21 19:48:49 +00:00
|
|
|
"dependencies": {
|
2022-06-28 08:27:47 +01:00
|
|
|
"@babel/core": "^7.18.6",
|
2022-06-28 08:28:46 +01:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.18.6",
|
2022-06-28 08:28:05 +01:00
|
|
|
"@babel/plugin-transform-runtime": "^7.18.6",
|
2022-06-28 08:29:19 +01:00
|
|
|
"@babel/preset-env": "^7.18.6",
|
2022-06-28 08:27:57 +01:00
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
2022-07-01 14:46:27 +01:00
|
|
|
"@codemirror/lang-html": "^6.1.0",
|
|
|
|
"@codemirror/lang-javascript": "^6.0.1",
|
|
|
|
"@codemirror/lang-python": "^6.0.0",
|
|
|
|
"@codemirror/lang-xml": "^6.0.0",
|
|
|
|
"@codemirror/legacy-modes": "^6.1.0",
|
2022-06-06 09:55:29 +01:00
|
|
|
"@formatjs/intl-listformat": "^7.0.2",
|
2022-03-23 08:27:07 +00:00
|
|
|
"@fortawesome/fontawesome-free": "^6.1.1",
|
2022-07-04 19:15:28 +01:00
|
|
|
"@goauthentik/api": "^2022.6.3-1656957989",
|
2021-11-26 12:30:39 +00:00
|
|
|
"@jackfranklin/rollup-plugin-markdown": "^0.3.0",
|
2022-06-23 08:46:23 +01:00
|
|
|
"@lingui/cli": "^3.14.0",
|
2022-06-23 08:48:02 +01:00
|
|
|
"@lingui/core": "^3.14.0",
|
2022-06-23 08:44:51 +01:00
|
|
|
"@lingui/detect-locale": "^3.14.0",
|
2022-06-23 08:46:07 +01:00
|
|
|
"@lingui/macro": "^3.14.0",
|
2022-07-01 08:21:02 +01:00
|
|
|
"@patternfly/patternfly": "^4.202.1",
|
2021-03-24 23:02:35 +00:00
|
|
|
"@polymer/iron-form": "^3.0.1",
|
2021-03-29 09:09:43 +01:00
|
|
|
"@polymer/paper-input": "^3.2.1",
|
2022-02-23 08:50:29 +00:00
|
|
|
"@rollup/plugin-babel": "^5.3.1",
|
2022-06-27 08:01:52 +01:00
|
|
|
"@rollup/plugin-commonjs": "^22.0.1",
|
2022-05-03 11:31:14 +01:00
|
|
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
2022-02-23 08:50:41 +00:00
|
|
|
"@rollup/plugin-replace": "^4.0.0",
|
2022-06-13 08:35:05 +01:00
|
|
|
"@rollup/plugin-typescript": "^8.3.3",
|
2022-07-01 15:04:03 +01:00
|
|
|
"@sentry/browser": "^7.4.1",
|
2022-07-01 15:02:23 +01:00
|
|
|
"@sentry/tracing": "^7.4.1",
|
2021-09-15 21:43:03 +01:00
|
|
|
"@squoosh/cli": "^0.7.2",
|
2022-02-04 09:17:21 +00:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
|
2022-04-25 11:27:40 +01:00
|
|
|
"@types/chart.js": "^2.9.37",
|
2021-10-12 07:33:01 +01:00
|
|
|
"@types/codemirror": "5.60.5",
|
2022-03-17 08:46:23 +00:00
|
|
|
"@types/grecaptcha": "^3.0.4",
|
2022-07-04 08:40:16 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.30.4",
|
2022-07-04 08:38:51 +01:00
|
|
|
"@typescript-eslint/parser": "^5.30.4",
|
2021-08-03 08:23:25 +01:00
|
|
|
"@webcomponents/webcomponentsjs": "^2.6.0",
|
2021-05-06 07:42:54 +01:00
|
|
|
"babel-plugin-macros": "^3.1.0",
|
2022-06-25 16:44:17 +01:00
|
|
|
"babel-plugin-tsconfig-paths": "^1.0.3",
|
2021-02-17 19:49:58 +00:00
|
|
|
"base64-js": "^1.5.1",
|
2022-05-26 08:54:33 +01:00
|
|
|
"chart.js": "^3.8.0",
|
2021-04-05 10:28:22 +01:00
|
|
|
"chartjs-adapter-moment": "^1.0.0",
|
2022-07-01 14:46:27 +01:00
|
|
|
"codemirror": "^6.0.1",
|
2022-01-31 11:09:13 +00:00
|
|
|
"construct-style-sheets-polyfill": "^3.1.0",
|
2022-06-01 08:29:05 +01:00
|
|
|
"country-flag-icons": "^1.5.5",
|
2022-07-04 08:38:38 +01:00
|
|
|
"eslint": "^8.19.0",
|
2021-04-03 18:07:11 +01:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2022-03-28 08:41:52 +01:00
|
|
|
"eslint-plugin-custom-elements": "0.0.6",
|
2021-10-20 08:13:52 +01:00
|
|
|
"eslint-plugin-lit": "^1.6.1",
|
2022-02-03 08:38:43 +00:00
|
|
|
"flowchart.js": "^1.17.1",
|
2022-05-11 08:58:59 +01:00
|
|
|
"fuse.js": "^6.6.2",
|
2022-06-30 09:08:29 +01:00
|
|
|
"lit": "^2.2.7",
|
2022-04-18 12:22:24 +01:00
|
|
|
"moment": "^2.29.3",
|
2022-06-17 08:38:46 +01:00
|
|
|
"prettier": "^2.7.1",
|
2022-05-25 09:47:58 +01:00
|
|
|
"rapidoc": "^9.3.2",
|
2022-06-21 05:42:43 +01:00
|
|
|
"rollup": "^2.75.7",
|
2021-02-19 08:21:34 +00:00
|
|
|
"rollup-plugin-copy": "^3.4.0",
|
2020-11-21 19:48:49 +00:00
|
|
|
"rollup-plugin-cssimport": "^1.0.2",
|
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 11:29:54 +01:00
|
|
|
"tslib": "^2.4.0",
|
2022-06-20 09:05:53 +01:00
|
|
|
"typescript": "^4.7.4",
|
2022-03-16 08:28:51 +00:00
|
|
|
"webcomponent-qr-code": "^1.0.6",
|
2022-05-30 08:51:33 +01:00
|
|
|
"yaml": "^2.1.1"
|
2021-08-23 15:47:56 +01:00
|
|
|
}
|
2020-02-21 10:20:55 +00:00
|
|
|
}
|