nes-web 0.0.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 (1) hide show
  1. package/package.json +189 -0
package/package.json ADDED
@@ -0,0 +1,189 @@
1
+ {
2
+ "name": "nes-web",
3
+ "version": "0.0.0",
4
+ "scripts": {
5
+ "ng": "ng",
6
+ "nes": "npm install --legacy-peer-deps",
7
+ "start": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve",
8
+ "start:prod": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --prod",
9
+ "start:polaris": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=polaris",
10
+ "start:polaris:prod": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=polarisProd",
11
+ "start:foreign": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=foreign",
12
+ "start:xac": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=xac",
13
+ "start:caspo": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=caspo",
14
+ "start:configman": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=configman",
15
+ "start:scopa": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=scopa",
16
+ "start:scopa:supplier": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=scopaSupplier",
17
+ "start:most": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=most",
18
+ "start:apex": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=apex",
19
+ "start:ard": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=ard",
20
+ "start:ctm": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=ctm",
21
+ "start:babakai": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=babakai",
22
+ "start:state": "node --openssl-legacy-provider --max_old_space_size=8192 node_modules/@angular/cli/bin/ng serve --configuration=state",
23
+ "prebuild": "node scripts/env-version.js",
24
+ "prebuild:memory": "node scripts/env-version.js",
25
+ "prebuild:prod": "node scripts/env-version.js",
26
+ "prebuild:prod:memory": "node scripts/env-version.js",
27
+ "build": "node --openssl-legacy-provider --max_old_space_size=2048 node_modules/@angular/cli/bin/ng build",
28
+ "build:memory": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build",
29
+ "build:prod": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --production",
30
+ "build:prod:memory": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --production",
31
+ "build:polaris": "node --max_old_space_size=2048 node_modules/@angular/cli/bin/ng build --configuration=polaris",
32
+ "build:polaris:memory": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=polaris",
33
+ "build:polaris:prod": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=polarisProd",
34
+ "build:polaris:prod:memory": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=polarisProd",
35
+ "build:state": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=state",
36
+ "build:capitron": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=capitron",
37
+ "build:foreign": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=foreign",
38
+ "build:xac": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=xac",
39
+ "build:mostparking": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=mostparking",
40
+ "build:scopa": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=scopa",
41
+ "build:scopa:supplier": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=scopaSupplier",
42
+ "build:caspo": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=caspo",
43
+ "build:configman": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=configman",
44
+ "build:most": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=most",
45
+ "build:apex": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=apex",
46
+ "build:ard": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=ard",
47
+ "build:ctm": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=ctm",
48
+ "build:babakai": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --configuration=babakai",
49
+ "test": "ng test",
50
+ "lint": "ng lint",
51
+ "e2e": "ng e2e",
52
+ "publish-modules": "sh ./scripts/publish.sh",
53
+ "config-modules": "node ./scripts/configure-modules.js",
54
+ "config-modules:polaris": "node ./scripts/configure-modules.js polaris-app",
55
+ "config-modules:mnbc": "node ./scripts/configure-modules.js mnbc-app",
56
+ "pubg": "./scripts/publish.sh",
57
+ "postinstall": "ngcc",
58
+ "copy-demo": "node ./scripts/copy-demo-modules.js",
59
+ "change-lang": "node ./scripts/changeLang.js"
60
+ },
61
+ "dependencies": {
62
+ "@angular/animations": "~12.2.13",
63
+ "@angular/cdk": "~10.0.0",
64
+ "@angular/common": "~12.2.13",
65
+ "@angular/compiler": "~12.2.13",
66
+ "@angular/core": "~12.2.13",
67
+ "@angular/forms": "~12.2.13",
68
+ "@angular/localize": "~12.2.13",
69
+ "@angular/platform-browser": "~12.2.13",
70
+ "@angular/platform-browser-dynamic": "~12.2.13",
71
+ "@angular/router": "~12.2.13",
72
+ "@ckeditor/ckeditor5-angular": "^2.0.1",
73
+ "@ckeditor/ckeditor5-build-nes": "^28.0.0",
74
+ "@hugerte/hugerte": "^1.0.0-develop",
75
+ "@ngrx/effects": "^8.4.0",
76
+ "@ngrx/store": "~8.4.0",
77
+ "@ngx-translate/core": "~11.0.1",
78
+ "@ngx-translate/http-loader": "~4.0.0",
79
+ "@progress/kendo-angular-barcodes": "2.0.1",
80
+ "@progress/kendo-angular-buttons": "6.4.0",
81
+ "@progress/kendo-angular-charts": "5.4.0",
82
+ "@progress/kendo-angular-common": "2.0.2",
83
+ "@progress/kendo-angular-conversational-ui": "3.0.2",
84
+ "@progress/kendo-angular-dateinputs": "5.3.0",
85
+ "@progress/kendo-angular-dialog": "5.2.3",
86
+ "@progress/kendo-angular-dropdowns": "5.5.1",
87
+ "@progress/kendo-angular-excel-export": "4.0.2",
88
+ "@progress/kendo-angular-grid": "5.1.1",
89
+ "@progress/kendo-angular-inputs": "7.5.2",
90
+ "@progress/kendo-angular-intl": "3.1.2",
91
+ "@progress/kendo-angular-l10n": "3.0.3",
92
+ "@progress/kendo-angular-label": "3.1.1",
93
+ "@progress/kendo-angular-layout": "6.3.5",
94
+ "@progress/kendo-angular-menu": "3.0.3",
95
+ "@progress/kendo-angular-notification": "^4.0.1",
96
+ "@progress/kendo-angular-pdf-export": "3.0.2",
97
+ "@progress/kendo-angular-popup": "4.0.2",
98
+ "@progress/kendo-angular-progressbar": "2.0.2",
99
+ "@progress/kendo-angular-scheduler": "^2.1.6",
100
+ "@progress/kendo-angular-scrollview": "4.1.2",
101
+ "@progress/kendo-angular-sortable": "4.0.4",
102
+ "@progress/kendo-angular-tooltip": "3.0.3",
103
+ "@progress/kendo-angular-treeview": "5.4.3",
104
+ "@progress/kendo-angular-upload": "7.1.5",
105
+ "@progress/kendo-data-query": "1.5.5",
106
+ "@progress/kendo-date-math": "1.5.4",
107
+ "@progress/kendo-drawing": "1.15.0",
108
+ "@progress/kendo-licensing": "^1.2.1",
109
+ "@progress/kendo-recurrence": "^1.0.3",
110
+ "@progress/kendo-theme-bootstrap": "4.43.0",
111
+ "@syncfusion/ej2-angular-buttons": "29.1.33-ngcc",
112
+ "@syncfusion/ej2-angular-diagrams": "29.1.35",
113
+ "@syncfusion/ej2-navigations": "29.1.34",
114
+ "@syncfusion/ej2-angular-documenteditor": "29.1.35-ngcc",
115
+ "@syncfusion/ej2-documenteditor": "^29.1.35",
116
+ "@syncfusion/ej2-material-theme": "29.1.35",
117
+ "@types/hammerjs": "^2.0.41",
118
+ "angular-cropperjs": "~1.0.1",
119
+ "apexcharts": "^3.26.0",
120
+ "bootstrap": "~4.3.1",
121
+ "canvas-datagrid": "~0.22.12",
122
+ "cropperjs": "~1.4.3",
123
+ "crypto-js": "~3.1.9-1",
124
+ "decimal.js": "10.3.1",
125
+ "dexie": "~3.2.2",
126
+ "driver.js": "^1.3.1",
127
+ "hammerjs": "^2.0.8",
128
+ "jszip": "^3.10.1",
129
+ "keycharm": "^0.4.0",
130
+ "lodash": "~4.17.15",
131
+ "mammoth": "~1.5.1",
132
+ "moment": "~2.29.4",
133
+ "ng-apexcharts": "^1.5.9",
134
+ "ng2-currency-mask": "^11.0.0",
135
+ "ng2-pdf-viewer": "^6.4.1",
136
+ "ngx-extended-pdf-viewer": "^10.0.0",
137
+ "ngx-markdown": "^12.1.0",
138
+ "ngx-toastr": "^14.3.0",
139
+ "ol": "6.4.3",
140
+ "path": "^0.12.7",
141
+ "reflect-metadata": "0.1.13",
142
+ "rxjs": "6.6.3",
143
+ "rxjs-compat": "^6.5.3",
144
+ "textarea-caret": "^3.1.0",
145
+ "to-px": "^1.1.0",
146
+ "tslib": "^2.0.0",
147
+ "util": "~0.12.4",
148
+ "uuid": "^8.0.0",
149
+ "vis-data": "^7.1.4",
150
+ "vis-network": "^9.1.2",
151
+ "vis-util": "^5.0.3",
152
+ "webpack": "^5.66.0",
153
+ "xlsx": "0.17.3",
154
+ "zone.js": "~0.11.4"
155
+ },
156
+ "devDependencies": {
157
+ "@angular-devkit/build-angular": "~12.2.13",
158
+ "@angular/cli": "~12.2.13",
159
+ "@angular/compiler-cli": "~12.2.13",
160
+ "@angular/language-service": "~12.2.13",
161
+ "@babel/generator": "7.16.8",
162
+ "@ctrl/ngx-codemirror": "^2.2.0",
163
+ "@ngrx/store-devtools": "~8.4.0",
164
+ "@types/crypto-js": "~3.1.43",
165
+ "@types/jasmine": "~3.6.0",
166
+ "@types/jasminewd2": "~2.0.8",
167
+ "@types/lodash": "~4.14.144",
168
+ "@types/node": "^12.11.1",
169
+ "codemirror": "^5.49.0",
170
+ "faker": "4.1.0",
171
+ "jasmine-core": "~3.6.0",
172
+ "jasmine-spec-reporter": "~5.0.0",
173
+ "karma": "~6.3.9",
174
+ "karma-chrome-launcher": "~3.1.0",
175
+ "karma-coverage-istanbul-reporter": "~3.0.2",
176
+ "karma-jasmine": "~4.0.0",
177
+ "karma-jasmine-html-reporter": "^1.5.0",
178
+ "ng-packagr": "^12.2.5",
179
+ "protractor": "~7.0.0",
180
+ "replace-in-file": "^6.2.0",
181
+ "sass": "1.56.2",
182
+ "ts-node": "~7.0.0",
183
+ "tslint": "~6.1.3",
184
+ "typescript": "~4.3.4"
185
+ },
186
+ "resolutions": {
187
+ "webpack": "^5.50.0"
188
+ }
189
+ }