@clickview/library-editor 1.1.2-rc.5 → 1.1.3-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/bundle.js +100023 -2
  2. package/dist/bundle.js.map +1 -1
  3. package/dist/en.json +1419 -1
  4. package/dist/library-editor-app.css +2599 -316
  5. package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +1 -1
  6. package/dist/src/apps/index.d.ts +1 -1
  7. package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +1 -1
  8. package/dist/src/apps/library-editor/services/ExportDataService.d.ts +1 -1
  9. package/dist/src/apps/notifications/utils/Constants.d.ts +0 -52
  10. package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +4 -13
  11. package/dist/src/apps/notifications/utils/index.d.ts +0 -1
  12. package/dist/src/apps/search/services/SearchDataService.d.ts +1 -1
  13. package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +1 -1
  14. package/dist/src/index.d.ts +0 -6
  15. package/dist/src/shared/behaviors/index.d.ts +0 -1
  16. package/dist/src/shared/components/index.d.ts +0 -2
  17. package/dist/src/shared/constants/ImageUrls.d.ts +0 -1
  18. package/dist/src/shared/constants/Services.d.ts +0 -1
  19. package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +1 -1
  20. package/dist/src/shared/enums/SortTypes.d.ts +0 -7
  21. package/dist/src/shared/enums/index.d.ts +0 -1
  22. package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +1 -2
  23. package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +1 -1
  24. package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +1 -1
  25. package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +1 -2
  26. package/dist/src/shared/interfaces/index.d.ts +0 -1
  27. package/dist/src/shared/services/UserDataService.d.ts +1 -1
  28. package/dist/src/shared/utils/SortHelper.d.ts +2 -1
  29. package/dist/src/shared/utils/index.d.ts +0 -2
  30. package/package.json +103 -103
@@ -1,6 +1,6 @@
1
1
  import { ObjectHash } from 'backbone';
2
2
  import { Core } from '@clickview/common';
3
- import { Notification } from "../../../notifications/models/Notification";
3
+ import { Notification } from '@clickview/shared';
4
4
  export declare class DashboardNotificationsComponent extends Core.Component<Notification> {
5
5
  get name(): string;
6
6
  get className(): string;
@@ -11,8 +11,8 @@ export * from './video-access/VideoAccessApplication';
11
11
  export * from './library-editor/services';
12
12
  export * from './content-updates/services';
13
13
  export * from './migration-wizard/services';
14
- export * from './notifications/services';
15
14
  export * from './search/services';
16
15
  export * from './staff-requests/services';
17
16
  export * from './upload/services';
18
17
  export * from './search/models/SearchAppVariables';
18
+ export * from './notifications/constants/NotificationsAppVariables';
@@ -1,7 +1,7 @@
1
1
  import { ObjectHash } from 'backbone';
2
2
  import { Core } from '@clickview/common';
3
3
  import { AnalyticsOptions } from '@clickview/analytics';
4
- import { CollectionIdentifier } from "../../../../shared/interfaces";
4
+ import { CollectionIdentifier } from '@clickview/shared';
5
5
  interface SortSelectComponentOptions extends Core.ComponentOptions {
6
6
  appLink: Core.AppLink;
7
7
  collectionIdentifier: CollectionIdentifier;
@@ -1,6 +1,6 @@
1
+ import { SortType } from '@clickview/shared';
1
2
  import { BaseDataService } from '@clickview/common';
2
3
  import { User } from "../../../shared/models";
3
- import { SortType } from "../../../shared/enums";
4
4
  export declare class ExportDataService extends BaseDataService {
5
5
  get name(): string;
6
6
  get channelName(): string;
@@ -1,55 +1,3 @@
1
- export declare enum NotificationAlertType {
2
- Other = 0,
3
- Alert = 1,
4
- Warning = 2,
5
- Info = 3,
6
- Success = 4
7
- }
8
- export declare enum NotificationStatus {
9
- Received = 1,
10
- Seen = 2,
11
- Read = 3
12
- }
13
- export interface NotificationCollectionRequest {
14
- limit?: number;
15
- cursor?: string;
16
- before?: string;
17
- }
18
- export declare enum NotificationType {
19
- ExchangeVideoAvailable = "exchange-video-available",
20
- WorkspaceVideoAvailable = "workspace-video-available",
21
- Marketing = "marketing",
22
- EditedVideoAvailable = "edited-video-available",
23
- VideoRequestAvailable = "pay-tv-video-available",
24
- VideoRequestDenied = "pay-tv-video-denied",
25
- VideoReviewReminder = "term-update-review-reminder",
26
- VideoReviewAddedToLibrary = "term-update-review-videos-added-to-library",
27
- CustomLibraryVideoAvailable = "custom-library-video-available",
28
- VideoProcessingFailed = "video-processing-failed",
29
- StaffRequest = "new-staff-request",
30
- StaffRequestFulfilled = "staff-request-fulfilment",
31
- ChapterMergeSuccess = "media-concatenate-success",
32
- SuggestEdit = "suggest-an-edit"
33
- }
34
- export declare enum NotificationActions {
35
- Read = "notification:read"
36
- }
37
- export declare enum NotificationAppLinkModules {
38
- Video = "video",
39
- Url = "url",
40
- Module = "module",
41
- App = "app",
42
- StaffRequest = "staff_request"
43
- }
44
- export declare enum NotificationModules {
45
- LibraryReview = "libraryreview",
46
- ContentUpdates = "newcontent"
47
- }
48
1
  export declare enum NotificationChannels {
49
2
  Email = 0
50
3
  }
51
- /**
52
- * The following notifications types can be mapped to proper
53
- * AppLinks within Library Editor.
54
- */
55
- export declare const SupportedLibraryEditorNotifications: string[];
@@ -1,19 +1,10 @@
1
1
  import { ObjectHash } from 'backbone';
2
- import { NotificationAlertType, NotificationType } from "./Constants";
2
+ import { NotificationType } from '@clickview/shared';
3
3
  export declare const NotificationsHelper: {
4
- getIconColor: (type: NotificationAlertType) => "danger" | "warning" | "success" | "dark";
5
- getIcon: (type: NotificationAlertType) => import("../../../../../shared/dist/images/svg").localSvgs.CheckCircle | import("../../../../../shared/dist/images/svg").localSvgs.Info | import("../../../../../shared/dist/images/svg").localSvgs.Warning;
6
- /**
7
- * This is a manual override based on the notification type. This is only
8
- * temporary as some noitifications don't have the correct alert type.
9
- */
4
+ createSuggestEditNotification: (data: ObjectHash) => ObjectHash;
5
+ getIconColor: (type: import("../../../../../shared/dist").NotificationAlertType) => "dark" | "success" | "danger" | "warning";
6
+ getIcon: (type: import("../../../../../shared/dist").NotificationAlertType) => import("../../../../../shared/dist/images/svg").localSvgs.CheckCircle | import("../../../../../shared/dist/images/svg").localSvgs.Info | import("../../../../../shared/dist/images/svg").localSvgs.Warning;
10
7
  getIconColorByNotificationType: (type: NotificationType) => "danger" | "warning";
11
- /**
12
- * This is a manual override based on the notification type.
13
- * Using this to detect marketing notifications as they don't have a fixed
14
- * type atm.
15
- */
16
8
  getIconByNotificationType: (type: NotificationType) => import("../../../../../shared/dist/images/svg").localSvgs;
17
9
  getNotificationAction: (type: NotificationType) => string;
18
- createSuggestEditNotification: (data: ObjectHash) => ObjectHash;
19
10
  };
@@ -1,3 +1,2 @@
1
1
  export * from './Constants';
2
- export * from './NotificationAppLinkHelper';
3
2
  export * from './NotificationsHelper';
@@ -1,6 +1,6 @@
1
1
  import { BaseDataService } from '@clickview/common';
2
+ import { CollectionIdentifier } from '@clickview/shared';
2
3
  import { VideoCollection } from "../../../shared/collections";
3
- import { CollectionIdentifier } from "../../../shared/interfaces";
4
4
  import { FilterCollection } from "../collections";
5
5
  export declare class SearchDataService extends BaseDataService {
6
6
  private videoMixinService;
@@ -1,6 +1,6 @@
1
1
  import { ObjectHash } from 'backbone';
2
2
  import { Core } from '@clickview/common';
3
- import { AppLinkReferrer } from "../../../../shared/enums";
3
+ import { AppLinkReferrer } from '@clickview/shared';
4
4
  import { StaffRequest } from "../../models";
5
5
  interface StaffRequestsViewOptions extends Core.ViewOptions<StaffRequest> {
6
6
  requestId?: string;
@@ -117,11 +117,6 @@ import './apps/migration-wizard/views/selected-videos/selected-videos.lang.json'
117
117
  import './apps/migration-wizard/views/smart-migration/smart-migration.lang.json';
118
118
  import './apps/migration-wizard/views/start/start.lang.json';
119
119
  import './apps/migration-wizard/views/videos-added/videos-added.lang.json';
120
- import './apps/notifications/components/notification-list/notification-list.lang.json';
121
- import './apps/notifications/services/notifications-services.lang.json';
122
- import './apps/notifications/utils/notifications-utils.lang.json';
123
- import './apps/notifications/views/notifications/notifications.lang.json';
124
- import './apps/notifications/views/popover/notifications-popover.lang.json';
125
120
  import './apps/search/components/filters/filter-list/filter-list.lang.json';
126
121
  import './apps/search/components/filters/filter-options/tag-filter-options/tag-filter-options.lang.json';
127
122
  import './apps/search/components/filters/filters.lang.json';
@@ -164,7 +159,6 @@ import './shared/components/edit-video/edit-production-info/edit-production-info
164
159
  import './shared/components/edit-video/edit-season-info/edit-season-info.lang.json';
165
160
  import './shared/components/edit-video/select-rating/select-rating.lang.json';
166
161
  import './shared/components/page-footer/page-footer.lang.json';
167
- import './shared/components/pagination/pagination.lang.json';
168
162
  import './shared/components/video-actions/video-actions.lang.json';
169
163
  import './shared/components/video-basic-info/video-basic-info.lang.json';
170
164
  import './shared/components/video-description/video-description.lang.json';
@@ -4,7 +4,6 @@ export * from './file-select/FileSelectBehavior';
4
4
  export * from './image-select-behavior/ImageSelectBehavior';
5
5
  export * from './lock-layout-file-drop/LockLayoutFileDropBehavior';
6
6
  export * from './backbone-validation/BackboneValidationBehavior';
7
- export * from './empty-state/EmptyStateBehavior';
8
7
  export * from './lazy-load/LazyLoadBehavior';
9
8
  export * from './popup/PopupBehavior';
10
9
  export * from './stickit/StickitBehavior';
@@ -15,7 +15,6 @@ export * from './checkbox/CheckboxComponent';
15
15
  export * from './checkbox/BulkCheckboxComponent';
16
16
  export * from './left-nav/LeftNavComponent';
17
17
  export * from './page-footer/PageFooterComponent';
18
- export * from './pagination/PaginationComponent';
19
18
  export * from './video-basic-info/VideoBasicInfoComponent';
20
19
  export * from './video-item-preview/VideoItemPreviewComponent';
21
20
  export * from './video-preview/VideoPreviewComponent';
@@ -41,5 +40,4 @@ export * from './dialog/DialogView';
41
40
  export * from './dropdown/DropdownButtonComponent';
42
41
  export * from './dropdown/DropdownComponentCollection';
43
42
  export * from './dropdown/DropdownItemComponent';
44
- export * from './empty-state/EmptyStateComponent';
45
43
  export * from './spinner-button/SpinnerButtonComponent';
@@ -5,7 +5,6 @@ export declare const ImageUrls: {
5
5
  Library: string;
6
6
  Folder: string;
7
7
  Search: string;
8
- Notifications: string;
9
8
  VideoAccess: string;
10
9
  AwaitingReview: string;
11
10
  PastReleases: string;
@@ -28,7 +28,6 @@ declare enum DataServices {
28
28
  Library = "LibraryDataService",
29
29
  Video = "VideoDataService",
30
30
  Notifications = "NotificationDataService",
31
- NotificationsSocket = "NotificationSocketService",
32
31
  Settings = "SettingsDataService",
33
32
  StaffRequests = "StaffRequestDataService",
34
33
  MigrationVideo = "MigrationVideoDataService",
@@ -1,4 +1,4 @@
1
- import { EmptyStateComponentOptions } from "../../components";
1
+ import { EmptyStateComponentOptions } from '@clickview/shared';
2
2
  export interface EmptyStateOptions extends Pick<EmptyStateComponentOptions, Exclude<keyof EmptyStateComponentOptions, 'imageUrl'>> {
3
3
  }
4
4
  export declare const EmptyStateComponents: {
@@ -1,10 +1,3 @@
1
- export declare enum SortType {
2
- MostRecent = 1,
3
- AtoZ = 2,
4
- ProductionYear = 3,
5
- Newest = 4,
6
- SeriesSort = 5
7
- }
8
1
  export declare enum ExportServiceSortType {
9
2
  MostRecent = 0,
10
3
  LeastRecent = 1,
@@ -13,7 +13,6 @@ export * from './ImageType';
13
13
  export * from './FileIdType';
14
14
  export * from './UserRole';
15
15
  export * from './TimeType';
16
- export * from './AppLinkReferrer';
17
16
  export * from './CurationStatus';
18
17
  export * from './UploadInteractionType';
19
18
  export * from './RestrictedObjectType';
@@ -1,5 +1,4 @@
1
- import { SortType } from "../enums";
2
- import { CollectionIdentifier } from './CollectionIdentifier';
1
+ import { SortType, CollectionIdentifier } from '@clickview/shared';
3
2
  export declare class LibraryFoldersIdentifier extends CollectionIdentifier {
4
3
  constructor(id: string, sort: SortType, cursor?: string);
5
4
  }
@@ -1,5 +1,5 @@
1
1
  import { ObjectHash } from 'backbone';
2
- import { CollectionIdentifier, CollectionIdentifierOptions } from "./CollectionIdentifier";
2
+ import { CollectionIdentifier, CollectionIdentifierOptions } from '@clickview/shared';
3
3
  import { Option } from "../../apps/search/models";
4
4
  interface RecentVideoCollectionIdentifierOptions extends CollectionIdentifierOptions {
5
5
  libraryIds: string[];
@@ -1,5 +1,5 @@
1
1
  import { ObjectHash } from 'backbone';
2
- import { CollectionIdentifier, CollectionIdentifierOptions } from "./CollectionIdentifier";
2
+ import { CollectionIdentifier, CollectionIdentifierOptions } from '@clickview/shared';
3
3
  import { Option } from "../../apps/search/models";
4
4
  interface RecentVideoSubjectCollectionIdentifierOptions extends CollectionIdentifierOptions {
5
5
  libraryIds: string[];
@@ -1,5 +1,4 @@
1
- import { SortType } from "../enums";
2
- import { CollectionIdentifier } from "./CollectionIdentifier";
1
+ import { SortType, CollectionIdentifier } from '@clickview/shared';
3
2
  export declare class VideoCollectionIdentifier extends CollectionIdentifier {
4
3
  constructor(id: string, sort: SortType, cursor?: string);
5
4
  }
@@ -1,4 +1,3 @@
1
- export * from './CollectionIdentifier';
2
1
  export * from './VideoCollectionIdentifier';
3
2
  export * from './RecentVideoCollectionIdentifier';
4
3
  export * from './RecentVideoSubjectCollectionIdentifier';
@@ -1,8 +1,8 @@
1
1
  /// <reference types="backbone" />
2
2
  /// <reference types="backbone.radio" />
3
3
  /// <reference types="backbone.validation" />
4
- import { User } from "../models";
5
4
  import { BaseDataService } from '@clickview/common';
5
+ import { User } from "../models";
6
6
  import { DataServices } from "../constants/Services";
7
7
  export declare class UserDataService extends BaseDataService {
8
8
  get name(): string;
@@ -1,6 +1,7 @@
1
1
  import { ObjectHash } from 'backbone';
2
2
  import { Core } from '@clickview/common';
3
- import { SortType, ExportServiceSortType } from "../enums";
3
+ import { SortType } from '@clickview/shared';
4
+ import { ExportServiceSortType } from "../enums";
4
5
  declare const SortHelper: {
5
6
  GetCurrentSortType(): SortType;
6
7
  GetSortViewModel(): Core.Model;
@@ -20,7 +20,5 @@ export * from './TabHelper';
20
20
  export * from './VideoHelper';
21
21
  export * from './CancelProcessingHelper';
22
22
  export * from './CollectionHelper';
23
- export * from './EmptyStateHelper';
24
23
  export * from './LazyLoadHelper';
25
24
  export * from './SpinnerHelper';
26
- export * from './handlebars';
package/package.json CHANGED
@@ -1,103 +1,103 @@
1
- {
2
- "name": "@clickview/library-editor",
3
- "description": "Library Editor",
4
- "version": "1.1.2-rc.5",
5
- "main": "dist/bundle.js",
6
- "types": "dist/src/index.d.ts",
7
- "scripts": {
8
- "clean-deps": "rd /s /q \"node_modules\"",
9
- "dev": "run-s vendor-dev watch",
10
- "prod": "run-s vendor-prod webpack-prod validate",
11
- "validate": "node ./tooling/buildValidator.js",
12
- "watch": "npm run webpack-dev -- --watch",
13
- "dev-vendor": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
14
- "webpack-dev": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js",
15
- "vendor-dev": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
16
- "dotnet-dev": "dotnet run --launch-profile Development",
17
- "webpack-prod": "set NODE_ENV=production&& node --max_old_space_size=6144 node_modules\\webpack\\bin\\webpack --config ./tooling/webpack.config.js",
18
- "vendor-prod": "set NODE_ENV=production&& node ./tooling/bundleHelper.js",
19
- "dotnet-prod": "dotnet run --launch-profile Production",
20
- "start-old": "run-p link dev dotnet-dev",
21
- "start-prod": "run-s prod dotnet-prod",
22
- "start": "set NODE_ENV=development&& webpack -w --config ./tooling/webpack.config.js",
23
- "build": "set NODE_ENV=production&& webpack --config ./tooling/webpack.config.js",
24
- "dev-build": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "http://gitlab.cvinternal.net/Online/Cloud"
29
- },
30
- "author": "Shale Kuzmanovski, Michael McDonnell",
31
- "license": "ISC",
32
- "devDependencies": {
33
- "@clickview/tooling": "0.0.12-rc.6",
34
- "@fortawesome/fontawesome": "1.1.8",
35
- "@types/clipboard": "2.0.1",
36
- "@types/cropperjs": "1.1.5",
37
- "@types/dropzone": "5.0.6",
38
- "@types/jqueryui": "1.12.7",
39
- "@types/linkifyjs": "2.1.2",
40
- "@types/node-polyglot": "0.4.33",
41
- "@types/typeahead": "0.11.32",
42
- "@types/webpack-env": "1.13.9",
43
- "babel-minify-webpack-plugin": "0.3.1",
44
- "mkdirp": "0.5.1",
45
- "node-sass": "4.12.0",
46
- "npm-run-all": "4.1.5",
47
- "postcss-cli": "6.1.3",
48
- "postcss-sass": "0.4.1",
49
- "prettier": "1.18.2",
50
- "regenerator-runtime": "0.13.3",
51
- "rev-hash": "3.0.0",
52
- "stylelint-config-recommended": "2.2.0",
53
- "stylelint-scss": "3.9.0",
54
- "typedoc": "0.14.2",
55
- "webpack-bundle-analyzer": "3.3.2",
56
- "webpack-dev-middleware": "3.7.0",
57
- "webpack-env": "0.8.0",
58
- "webpack-hot-middleware": "2.25.0",
59
- "webpack-stats-plugin": "0.2.1",
60
- "write-json-file": "4.1.1"
61
- },
62
- "dependencies": {
63
- "@babel/polyfill": "7.4.4",
64
- "@clickview/analytics": "1.0.2-rc.6",
65
- "@clickview/common": "1.0.2-rc.6",
66
- "@clickview/shared": "1.0.2-rc.6",
67
- "@clickview/styles": "1.0.2-rc.6",
68
- "autotrack": "2.4.1",
69
- "bootstrap": "4.3.1",
70
- "clipboard": "2.0.4",
71
- "corejs-typeahead": "1.2.1",
72
- "cropperjs": "1.5.3",
73
- "dropzone": "5.5.1",
74
- "jquery-ui": "1.12.1",
75
- "linkifyjs": "2.1.8",
76
- "moment": "2.24.0",
77
- "node-polyglot": "2.3.0",
78
- "signalr": "2.4.0",
79
- "tempusdominus-bootstrap-4": "5.1.2"
80
- },
81
- "browserslist": [
82
- "Firefox >= 22",
83
- "Chrome >= 28",
84
- "Safari >= 6",
85
- "IE >= 11",
86
- "Edge >= 20"
87
- ],
88
- "babel": {
89
- "presets": [
90
- [
91
- "@babel/preset-env",
92
- {
93
- "corejs": 2,
94
- "useBuiltIns": "entry"
95
- }
96
- ]
97
- ]
98
- },
99
- "vendorBundle": {
100
- "name": "cv-vendor",
101
- "hash": "50a185b299"
102
- }
103
- }
1
+ {
2
+ "name": "@clickview/library-editor",
3
+ "description": "Library Editor",
4
+ "version": "1.1.3-dev.0",
5
+ "main": "dist/bundle.js",
6
+ "types": "dist/src/index.d.ts",
7
+ "scripts": {
8
+ "clean-deps": "rd /s /q \"node_modules\"",
9
+ "dev": "run-s vendor-dev watch",
10
+ "prod": "run-s vendor-prod webpack-prod validate",
11
+ "validate": "node ./tooling/buildValidator.js",
12
+ "watch": "npm run webpack-dev -- --watch",
13
+ "dev-vendor": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
14
+ "webpack-dev": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js",
15
+ "vendor-dev": "set NODE_ENV=development&& node ./tooling/bundleHelper.js",
16
+ "dotnet-dev": "dotnet run --launch-profile Development",
17
+ "webpack-prod": "set NODE_ENV=production&& node --max_old_space_size=6144 node_modules\\webpack\\bin\\webpack --config ./tooling/webpack.config.js",
18
+ "vendor-prod": "set NODE_ENV=production&& node ./tooling/bundleHelper.js",
19
+ "dotnet-prod": "dotnet run --launch-profile Production",
20
+ "start-old": "run-p link dev dotnet-dev",
21
+ "start-prod": "run-s prod dotnet-prod",
22
+ "start": "set NODE_ENV=development&& webpack -w --config ./tooling/webpack.config.js",
23
+ "build": "set NODE_ENV=production&& webpack --config ./tooling/webpack.config.js",
24
+ "dev-build": "set NODE_ENV=development&& webpack --config ./tooling/webpack.config.js"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "http://gitlab.cvinternal.net/Online/Cloud"
29
+ },
30
+ "author": "Shale Kuzmanovski, Michael McDonnell",
31
+ "license": "ISC",
32
+ "devDependencies": {
33
+ "@clickview/tooling": "0.0.13-dev.0",
34
+ "@fortawesome/fontawesome": "1.1.8",
35
+ "@types/clipboard": "2.0.1",
36
+ "@types/cropperjs": "1.1.5",
37
+ "@types/dropzone": "5.0.6",
38
+ "@types/jqueryui": "1.12.7",
39
+ "@types/linkifyjs": "2.1.2",
40
+ "@types/node-polyglot": "0.4.33",
41
+ "@types/typeahead": "0.11.32",
42
+ "@types/webpack-env": "1.13.9",
43
+ "babel-minify-webpack-plugin": "0.3.1",
44
+ "mkdirp": "0.5.1",
45
+ "node-sass": "4.12.0",
46
+ "npm-run-all": "4.1.5",
47
+ "postcss-cli": "6.1.3",
48
+ "postcss-sass": "0.4.1",
49
+ "prettier": "1.18.2",
50
+ "regenerator-runtime": "0.13.3",
51
+ "rev-hash": "3.0.0",
52
+ "stylelint-config-recommended": "2.2.0",
53
+ "stylelint-scss": "3.9.0",
54
+ "typedoc": "0.14.2",
55
+ "webpack-bundle-analyzer": "3.3.2",
56
+ "webpack-dev-middleware": "3.7.0",
57
+ "webpack-env": "0.8.0",
58
+ "webpack-hot-middleware": "2.25.0",
59
+ "webpack-stats-plugin": "0.2.1",
60
+ "write-json-file": "4.1.1"
61
+ },
62
+ "dependencies": {
63
+ "@babel/polyfill": "7.4.4",
64
+ "@clickview/analytics": "1.0.3-dev.0",
65
+ "@clickview/common": "1.0.3-dev.0",
66
+ "@clickview/shared": "1.0.3-dev.0",
67
+ "@clickview/styles": "1.0.3-dev.0",
68
+ "autotrack": "2.4.1",
69
+ "bootstrap": "4.3.1",
70
+ "clipboard": "2.0.4",
71
+ "corejs-typeahead": "1.2.1",
72
+ "cropperjs": "1.5.3",
73
+ "dropzone": "5.5.1",
74
+ "jquery-ui": "1.12.1",
75
+ "linkifyjs": "2.1.8",
76
+ "moment": "2.24.0",
77
+ "node-polyglot": "2.3.0",
78
+ "signalr": "2.4.0",
79
+ "tempusdominus-bootstrap-4": "5.1.2"
80
+ },
81
+ "browserslist": [
82
+ "Firefox >= 22",
83
+ "Chrome >= 28",
84
+ "Safari >= 6",
85
+ "IE >= 11",
86
+ "Edge >= 20"
87
+ ],
88
+ "babel": {
89
+ "presets": [
90
+ [
91
+ "@babel/preset-env",
92
+ {
93
+ "corejs": 2,
94
+ "useBuiltIns": "entry"
95
+ }
96
+ ]
97
+ ]
98
+ },
99
+ "vendorBundle": {
100
+ "name": "cv-vendor",
101
+ "hash": "50a185b299"
102
+ }
103
+ }