2022-05-03 21:45:37 +02:00
|
|
|
{
|
2022-05-05 16:54:48 +02:00
|
|
|
"name": "@bitwarden/clients",
|
2022-05-03 21:45:37 +02:00
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "Bitwarden Client Applications",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-05-05 16:54:48 +02:00
|
|
|
"url": "git+https://github.com/bitwarden/clients.git"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
|
|
|
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
2022-05-05 16:54:48 +02:00
|
|
|
"url": "https://github.com/bitwarden/clients/issues"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
|
|
|
"homepage": "https://bitwarden.com",
|
|
|
|
"scripts": {
|
2024-01-30 15:50:54 +01:00
|
|
|
"prepare": "husky",
|
2022-08-26 18:09:28 +02:00
|
|
|
"lint": "eslint . --cache --cache-strategy content && prettier --check .",
|
|
|
|
"lint:fix": "eslint . --cache --cache-strategy content --fix",
|
|
|
|
"lint:clear": "rimraf .eslintcache",
|
2023-02-24 16:44:01 +01:00
|
|
|
"prettier": "prettier --cache --write .",
|
2022-06-14 17:10:53 +02:00
|
|
|
"test": "jest",
|
2022-07-26 03:40:32 +02:00
|
|
|
"test:watch": "jest --clearCache && jest --watch",
|
2022-06-16 20:41:22 +02:00
|
|
|
"test:watch:all": "jest --watchAll",
|
2023-05-16 16:20:40 +02:00
|
|
|
"test:types": "node ./scripts/test-types.js",
|
2022-06-16 20:41:22 +02:00
|
|
|
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
|
2023-05-26 15:58:06 +02:00
|
|
|
"storybook": "ng run components:storybook",
|
|
|
|
"build-storybook": "ng run components:build-storybook",
|
2023-06-12 20:59:59 +02:00
|
|
|
"build-storybook:ci": "ng run components:build-storybook --webpack-stats-json",
|
|
|
|
"postinstall": "patch-package"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
2022-06-14 17:10:53 +02:00
|
|
|
"workspaces": [
|
|
|
|
"apps/*",
|
2022-07-25 13:24:13 +02:00
|
|
|
"apps/desktop/desktop_native",
|
2022-06-14 17:10:53 +02:00
|
|
|
"libs/*"
|
|
|
|
],
|
2022-05-03 21:45:37 +02:00
|
|
|
"devDependencies": {
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular-devkit/build-angular": "16.2.11",
|
|
|
|
"@angular-eslint/eslint-plugin": "16.3.1",
|
|
|
|
"@angular-eslint/eslint-plugin-template": "16.3.1",
|
|
|
|
"@angular-eslint/template-parser": "16.3.1",
|
|
|
|
"@angular/cli": "16.2.11",
|
|
|
|
"@angular/compiler-cli": "16.2.12",
|
|
|
|
"@angular/elements": "16.2.12",
|
2023-12-01 14:13:10 +01:00
|
|
|
"@compodoc/compodoc": "1.1.23",
|
2024-02-16 09:45:58 +01:00
|
|
|
"@electron/notarize": "2.3.0",
|
2024-01-29 18:58:54 +01:00
|
|
|
"@electron/rebuild": "3.6.0",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@ngtools/webpack": "16.2.11",
|
2023-12-19 20:58:00 +01:00
|
|
|
"@storybook/addon-a11y": "7.6.4",
|
|
|
|
"@storybook/addon-actions": "7.6.4",
|
2023-12-01 14:24:33 +01:00
|
|
|
"@storybook/addon-designs": "7.0.7",
|
2023-12-19 20:58:00 +01:00
|
|
|
"@storybook/addon-essentials": "7.6.4",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@storybook/addon-interactions": "7.6.4",
|
2023-12-19 20:58:00 +01:00
|
|
|
"@storybook/addon-links": "7.6.4",
|
|
|
|
"@storybook/angular": "7.6.4",
|
2023-12-18 16:29:41 +01:00
|
|
|
"@storybook/jest": "0.2.3",
|
|
|
|
"@storybook/testing-library": "0.2.2",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/argon2-browser": "1.18.1",
|
2023-08-15 21:54:39 +02:00
|
|
|
"@types/chrome": "0.0.243",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/duo_web_sdk": "2.7.1",
|
2023-05-19 14:23:32 +02:00
|
|
|
"@types/firefox-webext-browser": "111.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/inquirer": "8.2.6",
|
2024-02-05 20:54:35 +01:00
|
|
|
"@types/jest": "29.5.12",
|
2023-12-05 12:16:12 +01:00
|
|
|
"@types/jquery": "3.5.29",
|
2023-12-07 12:45:31 +01:00
|
|
|
"@types/jsdom": "21.1.6",
|
2024-01-09 22:47:10 +01:00
|
|
|
"@types/koa": "2.14.0",
|
2024-01-10 04:14:32 +01:00
|
|
|
"@types/koa__multer": "2.0.7",
|
2024-01-09 23:40:17 +01:00
|
|
|
"@types/koa__router": "12.0.4",
|
2023-03-22 18:26:04 +01:00
|
|
|
"@types/koa-bodyparser": "4.3.7",
|
2024-01-09 23:13:03 +01:00
|
|
|
"@types/koa-json": "2.0.23",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/lowdb": "1.0.11",
|
2024-01-09 17:32:55 +01:00
|
|
|
"@types/lunr": "2.3.7",
|
2024-02-05 20:58:07 +01:00
|
|
|
"@types/node": "18.19.14",
|
2023-05-23 11:12:58 +02:00
|
|
|
"@types/node-fetch": "2.6.4",
|
2024-02-05 20:03:49 +01:00
|
|
|
"@types/node-forge": "1.3.11",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/node-ipc": "9.2.0",
|
2023-11-27 21:55:37 +01:00
|
|
|
"@types/papaparse": "5.3.14",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@types/proper-lockfile": "4.1.2",
|
2023-12-18 14:17:16 +01:00
|
|
|
"@types/react": "16.14.54",
|
2024-02-13 22:18:53 +01:00
|
|
|
"@types/retry": "0.12.5",
|
2023-12-08 14:10:40 +01:00
|
|
|
"@types/zxcvbn": "4.4.4",
|
2024-02-13 17:14:25 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
|
|
"@typescript-eslint/parser": "6.21.0",
|
2023-11-21 14:49:37 +01:00
|
|
|
"@webcomponents/custom-elements": "1.6.0",
|
2023-12-01 15:13:45 +01:00
|
|
|
"autoprefixer": "10.4.16",
|
2023-05-02 19:41:49 +02:00
|
|
|
"base64-loader": "1.0.0",
|
2023-12-01 14:37:17 +01:00
|
|
|
"chromatic": "10.0.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"clean-webpack-plugin": "4.0.0",
|
2023-11-28 23:16:14 +01:00
|
|
|
"concurrently": "8.2.2",
|
2023-05-02 19:41:49 +02:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
|
|
|
"cross-env": "7.0.3",
|
2023-06-05 16:33:21 +02:00
|
|
|
"css-loader": "6.8.1",
|
2024-02-15 11:40:26 +01:00
|
|
|
"electron": "28.2.3",
|
2023-10-23 11:23:27 +02:00
|
|
|
"electron-builder": "23.6.0",
|
2023-11-27 20:09:04 +01:00
|
|
|
"electron-log": "5.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"electron-reload": "2.0.0-alpha.1",
|
|
|
|
"electron-store": "8.1.0",
|
2024-02-20 15:57:22 +01:00
|
|
|
"electron-updater": "6.1.8",
|
2023-12-27 23:27:07 +01:00
|
|
|
"eslint": "8.56.0",
|
2023-12-05 23:52:44 +01:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2023-11-30 19:38:44 +01:00
|
|
|
"eslint-import-resolver-typescript": "3.6.1",
|
2023-12-27 21:20:47 +01:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2023-05-12 17:05:26 +02:00
|
|
|
"eslint-plugin-rxjs": "5.0.3",
|
|
|
|
"eslint-plugin-rxjs-angular": "2.0.1",
|
2023-11-30 19:39:00 +01:00
|
|
|
"eslint-plugin-storybook": "0.6.15",
|
2024-01-03 15:32:08 +01:00
|
|
|
"eslint-plugin-tailwindcss": "3.13.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"gulp": "4.0.2",
|
2023-11-29 19:44:22 +01:00
|
|
|
"gulp-filter": "9.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"gulp-if": "3.0.0",
|
2023-12-21 16:48:17 +01:00
|
|
|
"gulp-json-editor": "2.6.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"gulp-replace": "1.1.4",
|
2023-11-29 19:44:22 +01:00
|
|
|
"gulp-zip": "6.0.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"html-loader": "4.2.0",
|
|
|
|
"html-webpack-injector": "1.1.4",
|
2023-12-12 02:46:41 +01:00
|
|
|
"html-webpack-plugin": "5.5.4",
|
2024-02-05 18:11:31 +01:00
|
|
|
"husky": "9.0.10",
|
2023-05-19 17:08:22 +02:00
|
|
|
"jest-junit": "16.0.0",
|
2023-08-15 21:54:39 +02:00
|
|
|
"jest-mock-extended": "3.0.5",
|
2024-02-13 18:31:51 +01:00
|
|
|
"jest-preset-angular": "14.0.2",
|
2024-02-12 23:28:14 +01:00
|
|
|
"lint-staged": "15.2.2",
|
2023-05-23 11:12:58 +02:00
|
|
|
"mini-css-extract-plugin": "2.7.6",
|
2022-08-15 15:44:15 +02:00
|
|
|
"node-ipc": "9.2.1",
|
2023-05-01 11:09:24 +02:00
|
|
|
"pkg": "5.8.1",
|
2023-12-12 21:58:19 +01:00
|
|
|
"postcss": "8.4.32",
|
2023-08-15 21:54:39 +02:00
|
|
|
"postcss-loader": "7.3.3",
|
2024-01-17 22:02:44 +01:00
|
|
|
"prettier": "3.2.2",
|
2024-01-09 18:02:28 +01:00
|
|
|
"prettier-plugin-tailwindcss": "0.5.11",
|
2023-05-02 19:41:49 +02:00
|
|
|
"process": "0.11.10",
|
2023-05-26 15:58:06 +02:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2022-06-02 15:18:29 +02:00
|
|
|
"regedit": "^3.0.3",
|
2023-05-26 16:12:32 +02:00
|
|
|
"remark-gfm": "3.0.1",
|
2023-11-28 21:36:53 +01:00
|
|
|
"rimraf": "5.0.5",
|
2023-12-12 22:06:44 +01:00
|
|
|
"sass": "1.69.5",
|
2023-08-15 21:54:39 +02:00
|
|
|
"sass-loader": "13.3.2",
|
2023-12-19 20:58:00 +01:00
|
|
|
"storybook": "7.6.4",
|
2023-05-23 11:12:58 +02:00
|
|
|
"style-loader": "3.3.3",
|
2023-12-01 15:06:01 +01:00
|
|
|
"tailwindcss": "3.3.5",
|
2024-01-25 16:03:56 +01:00
|
|
|
"ts-jest": "29.1.2",
|
2023-12-12 02:53:42 +01:00
|
|
|
"ts-loader": "9.5.1",
|
2023-08-15 21:54:39 +02:00
|
|
|
"tsconfig-paths-webpack-plugin": "4.1.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"type-fest": "2.19.0",
|
2024-02-20 12:14:54 +01:00
|
|
|
"typescript": "5.1.6",
|
2023-12-12 21:49:35 +01:00
|
|
|
"url": "0.11.3",
|
2023-05-02 19:41:49 +02:00
|
|
|
"util": "0.12.5",
|
2023-11-28 23:16:40 +01:00
|
|
|
"wait-on": "7.2.0",
|
2023-12-12 02:48:52 +01:00
|
|
|
"webpack": "5.89.0",
|
2023-08-15 21:54:39 +02:00
|
|
|
"webpack-cli": "5.1.4",
|
|
|
|
"webpack-dev-server": "4.15.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"webpack-node-externals": "3.0.0"
|
2022-06-02 15:18:29 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular/animations": "16.2.12",
|
|
|
|
"@angular/cdk": "16.2.13",
|
|
|
|
"@angular/common": "16.2.12",
|
|
|
|
"@angular/compiler": "16.2.12",
|
|
|
|
"@angular/core": "16.2.12",
|
|
|
|
"@angular/forms": "16.2.12",
|
|
|
|
"@angular/platform-browser": "16.2.12",
|
|
|
|
"@angular/platform-browser-dynamic": "16.2.12",
|
|
|
|
"@angular/router": "16.2.12",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@koa/multer": "3.0.2",
|
2024-01-09 22:08:19 +01:00
|
|
|
"@koa/router": "12.0.1",
|
2024-02-05 19:43:11 +01:00
|
|
|
"@microsoft/signalr": "8.0.0",
|
|
|
|
"@microsoft/signalr-protocol-msgpack": "8.0.0",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@ng-select/ng-select": "11.2.0",
|
2023-08-15 21:54:39 +02:00
|
|
|
"argon2": "0.31.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"argon2-browser": "1.18.0",
|
|
|
|
"big-integer": "1.6.51",
|
2022-06-02 17:59:43 +02:00
|
|
|
"bootstrap": "4.6.0",
|
2024-01-17 20:52:25 +01:00
|
|
|
"braintree-web-drop-in": "1.42.0",
|
2024-02-08 18:00:19 +01:00
|
|
|
"buffer": "6.0.3",
|
2023-12-12 02:35:09 +01:00
|
|
|
"bufferutil": "4.0.8",
|
2023-05-02 19:41:49 +02:00
|
|
|
"chalk": "4.1.2",
|
2024-01-31 23:17:04 +01:00
|
|
|
"commander": "11.1.0",
|
2023-12-12 21:40:14 +01:00
|
|
|
"core-js": "3.34.0",
|
2022-06-02 15:18:29 +02:00
|
|
|
"duo_web_sdk": "github:duosecurity/duo_web_sdk",
|
2022-06-14 17:10:53 +02:00
|
|
|
"form-data": "4.0.0",
|
2024-01-10 21:32:34 +01:00
|
|
|
"https-proxy-agent": "7.0.2",
|
2023-08-15 21:54:39 +02:00
|
|
|
"inquirer": "8.2.6",
|
2023-12-05 12:16:12 +01:00
|
|
|
"jquery": "3.7.1",
|
2023-12-07 12:39:16 +01:00
|
|
|
"jsdom": "23.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"jszip": "3.10.1",
|
2024-01-09 22:47:10 +01:00
|
|
|
"koa": "2.15.0",
|
2023-08-15 21:54:39 +02:00
|
|
|
"koa-bodyparser": "4.4.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"koa-json": "2.0.2",
|
|
|
|
"lowdb": "1.0.0",
|
|
|
|
"lunr": "2.3.9",
|
|
|
|
"multer": "1.4.5-lts.1",
|
2024-02-12 17:00:41 +01:00
|
|
|
"ngx-infinite-scroll": "16.0.0",
|
|
|
|
"ngx-toastr": "17.0.2",
|
2023-08-15 21:54:39 +02:00
|
|
|
"node-fetch": "2.6.12",
|
2023-05-02 19:41:49 +02:00
|
|
|
"node-forge": "1.3.1",
|
2022-09-06 12:15:25 +02:00
|
|
|
"nord": "0.2.1",
|
2023-12-07 12:46:47 +01:00
|
|
|
"oidc-client-ts": "2.4.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"open": "8.4.2",
|
2023-05-12 17:05:26 +02:00
|
|
|
"papaparse": "5.4.1",
|
2023-11-28 23:17:00 +01:00
|
|
|
"patch-package": "8.0.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"popper.js": "1.16.1",
|
|
|
|
"proper-lockfile": "4.1.2",
|
2024-01-26 17:22:41 +01:00
|
|
|
"qrcode-parser": "2.1.3",
|
2022-06-02 17:59:43 +02:00
|
|
|
"qrious": "4.0.2",
|
2023-05-12 17:05:26 +02:00
|
|
|
"rxjs": "7.8.1",
|
2023-11-21 14:49:37 +01:00
|
|
|
"tabbable": "6.2.0",
|
2024-02-05 16:08:24 +01:00
|
|
|
"tldts": "6.1.8",
|
2023-11-29 17:01:06 +01:00
|
|
|
"utf-8-validate": "6.0.3",
|
2024-02-12 17:00:41 +01:00
|
|
|
"zone.js": "0.13.3",
|
2023-05-02 19:41:49 +02:00
|
|
|
"zxcvbn": "4.4.2"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
2022-06-09 12:51:52 +02:00
|
|
|
"overrides": {
|
2022-06-16 20:41:22 +02:00
|
|
|
"tailwindcss": "$tailwindcss",
|
2023-03-22 18:26:04 +01:00
|
|
|
"@storybook/angular": {
|
2024-02-12 17:00:41 +01:00
|
|
|
"zone.js": "$zone.js"
|
2023-07-03 16:56:14 +02:00
|
|
|
},
|
|
|
|
"replacestream": "4.0.3"
|
2022-06-09 12:51:52 +02:00
|
|
|
},
|
2023-05-26 15:58:06 +02:00
|
|
|
"resolutions": {
|
2023-12-18 14:17:16 +01:00
|
|
|
"@types/react": "16.14.54"
|
2023-05-26 15:58:06 +02:00
|
|
|
},
|
2022-05-03 21:45:37 +02:00
|
|
|
"lint-staged": {
|
2023-02-24 17:09:23 +01:00
|
|
|
"*": "prettier --cache --ignore-unknown --write",
|
2022-08-26 18:09:28 +02:00
|
|
|
"*.ts": "eslint --cache --cache-strategy content --fix"
|
2022-06-02 15:18:29 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-05-01 11:09:24 +02:00
|
|
|
"node": "~18",
|
|
|
|
"npm": "~9"
|
2022-05-03 21:45:37 +02:00
|
|
|
}
|
|
|
|
}
|