argos/dmp-frontend/package.json

72 lines
2.1 KiB
JSON
Raw Normal View History

{
2019-09-23 10:17:03 +02:00
"name": "dmp-frontend2",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
2021-09-24 20:52:14 +02:00
"build": "ng build --configuration production",
2019-09-23 10:17:03 +02:00
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
2021-09-24 20:52:14 +02:00
"@angular/animations": "^12.2.7",
"@angular/common": "^12.2.7",
"@angular/compiler": "^12.2.7",
"@angular/core": "^12.2.7",
"@angular/forms": "^12.2.7",
"@angular/material-moment-adapter": "^12.2.7",
"@angular/platform-browser": "^12.2.7",
Description boxes in admin forms replaced with rich text editor <angular-editor>. 1. dataset-profile-editor-composite-field.component.ts & dataset-profile-editor-section.component.ts & dataset-profile-editor.component.ts: Initialize AngularEditorConfig. 2. dataset-profile-editor-composite-field.component.html & dataset-profile-editor-section.component.html & dataset-profile-editor.component.html: Use <angular-editor> in description. 3. multiple-auto-complete.component.html & dataset-profile-listing.component.html & form-section.component.html: Show description as html. 4. dataset-profile.module.ts: Imported HttpClientModule, AngularEditorModule (needed for <angular-editor>). 5. available-profiles.component.html: Show description as html, under the Dataset Template title, not as tooltip (matTooltip does not receive html). 6. available-profiles.component.ts: Added styleUrls: ['available-profiles.component.scss']. 7. available-profiles.component.scss: [NEW] Added css for class "list-option" to cut description if too long. 8. form-composite-title.component.html: Show description and extendedDescription as html | Add view more/less functionality to show/hide extendedDescription. 9. form-composite-title.component.ts: Added "public showExtendedDescription: boolean = false;" field. 10. form-composite-title.component.scss: Added css for "more" class, to make "view more/less" seem like link. 11. assets/i18n/: In language files added DATASET-EDITOR.QUESTION.EXTENDED-DESCRIPTION.VIEW-MORE (-LESS). 12. assets/styles.css: Added css for <angular-editor>, to be similar to the other text areas and forms.
2021-10-12 17:14:22 +02:00
"@kolkov/angular-editor": "^1.2.0",
2021-09-24 20:52:14 +02:00
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@swimlane/ngx-datatable": "^20.0.0",
"@tinymce/tinymce-angular": "^4.2.4",
"@w11k/angular-sticky-things": "^1.3.2",
2019-09-23 10:17:03 +02:00
"bootstrap": "^4.3.1",
2019-11-19 17:28:25 +01:00
"cookieconsent": "^3.1.1",
2019-09-23 10:17:03 +02:00
"core-js": "^2.5.5",
2021-09-24 20:52:14 +02:00
"file-saver": "^2.0.5",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ng-dialog-animation": "^9.0.4",
"ng2-dragula": "^2.1.1",
2021-09-24 20:52:14 +02:00
"ngx-cookie-service": "^12.0.3",
2019-11-19 17:28:25 +01:00
"ngx-cookieconsent": "^2.2.3",
2021-09-24 20:52:14 +02:00
"ngx-dropzone": "^3.0.0",
"ngx-guided-tour": "^1.1.11",
2020-12-10 14:29:24 +01:00
"ngx-matomo": "^0.1.4",
2022-04-28 11:03:01 +02:00
"pako": "^1.0.11",
2019-09-23 10:17:03 +02:00
"rxjs": "^6.3.2",
2021-09-24 20:52:14 +02:00
"tinymce": "^5.9.2",
"tslib": "^2.0.0",
2019-09-23 10:17:03 +02:00
"web-animations-js": "^2.3.2",
2021-09-24 20:52:14 +02:00
"zone.js": "~0.11.4"
2019-09-23 10:17:03 +02:00
},
"devDependencies": {
2021-09-24 20:52:14 +02:00
"@angular-devkit/build-angular": "~12.2.7",
"@angular/cdk": "^12.2.7",
"@angular/cli": "12.2.7",
"@angular/compiler-cli": "^12.2.7",
2022-04-28 11:03:01 +02:00
"@angular/language-service": "^12.2.7",
"@angular/material": "^12.2.7",
2021-09-24 20:52:14 +02:00
"@angular/platform-browser-dynamic": "^12.2.7",
"@angular/router": "^12.2.7",
"@types/facebook-js-sdk": "^3.3.5",
"@types/file-saver": "^2.0.3",
"@types/gapi": "^0.0.41",
"@types/gapi.auth2": "^0.0.55",
"@types/jasmine": "~3.9.1",
"@types/jasminewd2": "~2.0.10",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^12.11.1",
2022-04-28 11:03:01 +02:00
"@types/pako": "^1.0.3",
2021-09-24 20:52:14 +02:00
"codelyzer": "^6.0.2",
"ts-node": "~10.2.1",
"tslint": "~6.1.0",
"typescript": "4.3.5"
2019-09-23 10:17:03 +02:00
}
}