1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-22 21:20:52 +02:00
beerbrawl/frontend/package.json
Christoph Heiss ff4002fbe3
chore: frontend: update prettier
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-08-22 19:26:24 +02:00

80 lines
2.7 KiB
JSON

{
"name": "beerbrawl-frontend",
"version": "0.0.1",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --karma-config=src/karma.conf.local.js",
"test:ci": "ng test --karma-config=src/karma.conf.ci.js --code-coverage",
"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}'"
},
"dependencies": {
"@angular/animations": "18.0.4",
"@angular/cdk": "^18.0.4",
"@angular/common": "18.0.4",
"@angular/compiler": "18.0.4",
"@angular/core": "18.0.4",
"@angular/forms": "18.0.4",
"@angular/localize": "18.0.4",
"@angular/material": "^18.0.4",
"@angular/platform-browser": "18.0.4",
"@angular/platform-browser-dynamic": "18.0.4",
"@angular/router": "18.0.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",
"jwt-decode": "4.0.0",
"ng-qrcode": "^18.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.3",
"zone.js": "0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.5",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "18.0.5",
"@angular/compiler-cli": "18.0.4",
"@angular/language-service": "18.0.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.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.9",
"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": "^2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"puppeteer": "^22.11.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}