From 789b4a9dd483d895645cc02ddff24b0771c992e8 Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Thu, 28 Jul 2022 23:43:11 +0300 Subject: [PATCH] example of a common package json --- .gitignore | 1 + package.json | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/package.json b/package.json new file mode 100644 index 0000000..aa255ca --- /dev/null +++ b/package.json @@ -0,0 +1,60 @@ +{ + "name": "common-ui", + "version": "1.0.0", + "private": true, + "lint-staged": { + "*": "prettier --ignore-unknown --write", + "*.{ts,js,html}": "eslint --fix" + }, + "dependencies": { + "@angular/animations": "^14.0.0", + "@angular/cdk": "14.0.2", + "@angular/common": "^14.0.0", + "@angular/compiler": "^14.0.0", + "@angular/core": "^14.0.0", + "@angular/forms": "^14.0.0", + "@angular/material": "14.0.2", + "@angular/platform-browser": "^14.0.0", + "@angular/platform-browser-dynamic": "^14.0.0", + "@angular/router": "^14.0.0", + "@biesbjerg/ngx-translate-extract-marker": "^1.0.0", + "@ngx-translate/core": "^14.0.0", + "@ngx-translate/http-loader": "^7.0.0", + "@tabuckner/material-dayjs-adapter": "^2.0.0", + "dayjs": "^1.11.3", + "jwt-decode": "^3.1.2", + "keycloak-angular": "^10.0.1", + "keycloak-js": "^18.0.1", + "lodash-es": "^4.17.21", + "messageformat": "^2.3.0", + "ngx-toastr": "^15.0.0", + "ngx-translate-messageformat-compiler": "^5.0.1", + "rxjs": "~7.5.0", + "tslib": "^2.3.0", + "zone.js": "~0.11.4" + }, + "devDependencies": { + "@angular-devkit/build-angular": "^14.0.1", + "@angular-eslint/builder": "14.0.0-alpha.3", + "@angular-eslint/eslint-plugin": "14.0.0-alpha.3", + "@angular-eslint/eslint-plugin-template": "14.0.0-alpha.3", + "@angular-eslint/schematics": "14.0.0-alpha.3", + "@angular-eslint/template-parser": "14.0.0-alpha.3", + "@angular/cli": "~14.0.1", + "@angular/compiler-cli": "^14.0.0", + "@bartholomej/ngx-translate-extract": "^8.0.2", + "@types/lodash-es": "^4.17.6", + "@typescript-eslint/eslint-plugin": "5.28.0", + "@typescript-eslint/parser": "5.28.0", + "eslint": "^8.17.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-rxjs": "^5.0.2", + "eslint-plugin-rxjs-angular": "^2.0.0", + "husky": "^8.0.1", + "lint-staged": "^13.0.2", + "postcss": "^8.3.3", + "prettier": "^2.7.0", + "typescript": "~4.7.2" + } +}