1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-23 09:40:52 +02:00
beerbrawl/frontend/package.json
Christoph Heiss ccde24d598
feat(#24): frontend: add eslint-plugin-unused-imports to eslint
Signed-off-by: Christoph Heiss <e11907069@student.tuwien.ac.at>
2024-06-08 21:34:12 +02:00

76 lines
2.5 KiB
JSON

{
"name": "sepr-group-phase",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"generate-openapi-client": "npx openapi-generator-cli generate -g typescript-angular -i http://localhost:8080/v3/api-docs -o openapi-generated",
"eslint:check": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier:check": "prettier --check '**/*.{json,html,scss,ts}'",
"prettier:fix": "prettier --write '**/*.{json,html,scss,ts}'"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.4",
"@angular/cdk": "^17.3.8",
"@angular/common": "17.3.4",
"@angular/compiler": "17.3.4",
"@angular/core": "17.3.4",
"@angular/forms": "17.3.4",
"@angular/localize": "17.3.4",
"@angular/material": "^17.3.8",
"@angular/platform-browser": "17.3.4",
"@angular/platform-browser-dynamic": "17.3.4",
"@angular/router": "17.3.4",
"@fontsource/material-icons": "^5.0.18",
"@fontsource/material-icons-outlined": "^5.0.12",
"@fontsource/roboto": "^5.0.13",
"@popperjs/core": "2.11.8",
"core-js": "3.36.1",
"jquery": "3.7.1",
"jwt-decode": "4.0.0",
"ngx-mat-timepicker": "^17.1.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.4",
"@angular-eslint/builder": "17.5.1",
"@angular-eslint/eslint-plugin": "17.5.1",
"@angular-eslint/eslint-plugin-template": "17.5.1",
"@angular-eslint/schematics": "17.5.1",
"@angular-eslint/template-parser": "17.5.1",
"@angular/cli": "17.3.4",
"@angular/compiler-cli": "17.3.4",
"@angular/language-service": "17.3.4",
"@openapitools/openapi-generator-cli": "^2.13.4",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/jwt-decode": "3.1.0",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unused-imports": "^3.2.0",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"prettier": "^3.2.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}