tsw-timetable-frontend/package.json

92 lines
3.0 KiB
JSON
Raw Normal View History

2023-10-01 10:39:17 +02:00
{
"name": "tsw-timetable-frontend",
"version": "0.3.0",
2023-11-12 15:40:46 +01:00
"author": "Jim Martens",
"homepage": "https://2martens.de/",
"description": "Frontend for timetable application",
2023-10-01 10:39:17 +02:00
"scripts": {
"ng": "ng",
"start": "ng serve",
"startRemote": "ng serve -c developmentRemote",
"build": "ng build",
"build:development": "ng build -c development",
"build:development:stats": "ng build -c development --stats-json",
"build:production": "ng build -c production",
"build:production:sourcemap": "ng build -c productionDebug",
"build:production:stats": "ng build -c production --stats-json",
2023-10-26 23:12:00 +02:00
"analyze": "webpack-bundle-analyzer www/de/stats.json",
2023-10-01 10:39:17 +02:00
"watch": "ng build --watch --configuration development",
"test": "ng test",
2023-10-26 23:12:00 +02:00
"extract-i18n": "ng extract-i18n --output-path src/locale",
"lint": "ng lint"
2023-10-01 10:39:17 +02:00
},
"private": true,
2023-11-18 16:16:34 +01:00
"overrides": {
"@ngrx/effects": {
"@angular/core": "^17.0.2"
},
"@ngrx/store": {
"@angular/core": "^17.0.2"
}
},
2023-10-01 10:39:17 +02:00
"dependencies": {
2023-11-15 09:09:28 +01:00
"@angular/animations": "^17.0.2",
"@angular/common": "^17.0.2",
"@angular/compiler": "^17.0.2",
"@angular/core": "^17.0.2",
"@angular/forms": "^17.0.2",
"@angular/platform-browser": "^17.0.2",
"@angular/platform-browser-dynamic": "^17.0.2",
"@angular/router": "^17.0.2",
"@angular/service-worker": "^17.0.2",
2023-10-26 23:12:00 +02:00
"@capacitor/app": "5.0.6",
"@capacitor/core": "5.5.1",
"@capacitor/haptics": "5.0.6",
"@capacitor/keyboard": "5.0.6",
"@capacitor/status-bar": "5.0.6",
"@ionic/angular": "^7.5.5",
2023-11-18 16:08:42 +01:00
"@ngrx/effects": "^16.3.0",
2023-11-18 16:09:12 +01:00
"@ngrx/store": "^16.3.0",
2023-11-18 16:10:23 +01:00
"@ngrx/store-devtools": "^16.3.0",
2023-10-26 23:12:00 +02:00
"ionicons": "^7.2.1",
"keycloak-angular": "^15.0.0",
2023-10-26 23:12:00 +02:00
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
2023-11-15 09:09:28 +01:00
"zone.js": "~0.14.2"
2023-10-01 10:39:17 +02:00
},
"devDependencies": {
2023-11-15 09:09:28 +01:00
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "^17.0.1",
"@angular-eslint/eslint-plugin": "^17.0.1",
"@angular-eslint/eslint-plugin-template": "^17.0.1",
"@angular-eslint/schematics": "^17.0.1",
"@angular-eslint/template-parser": "^17.0.1",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.2",
"@angular/language-service": "^17.0.2",
"@angular/localize": "^17.0.2",
2023-10-26 23:12:00 +02:00
"@capacitor/cli": "5.5.1",
"@ionic/angular-toolkit": "^9.0.0",
"@schematics/angular": "^17.0.5",
2023-10-01 10:39:17 +02:00
"@types/jasmine": "~4.3.0",
2023-10-26 23:12:00 +02:00
"@types/node": "^12.11.1",
2023-11-15 09:09:28 +01:00
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
2023-11-18 16:16:34 +01:00
"eslint": "^7.32.0",
2023-10-26 23:12:00 +02:00
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
2023-10-01 10:39:17 +02:00
"jasmine-core": "~4.6.0",
2023-10-26 23:12:00 +02:00
"jasmine-spec-reporter": "~5.0.0",
2023-10-01 10:39:17 +02:00
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
2023-10-26 23:12:00 +02:00
"karma-coverage-istanbul-reporter": "~3.0.2",
2023-10-01 10:39:17 +02:00
"karma-jasmine": "~5.1.0",
2023-10-26 23:12:00 +02:00
"karma-jasmine-html-reporter": "~2.0.0",
"ts-node": "^8.3.0",
2023-11-15 09:09:28 +01:00
"typescript": "~5.2.2",
2023-10-26 23:12:00 +02:00
"webpack-bundle-analyzer": "^4.9.0"
2023-11-12 15:40:46 +01:00
}
2023-10-01 10:39:17 +02:00
}