example of a common package json

This commit is contained in:
Dan Percic 2022-07-28 23:43:11 +03:00
parent ef1c9be504
commit 789b4a9dd4
2 changed files with 61 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

60
package.json Normal file
View File

@ -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"
}
}