-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "questy",
"version": "1.0.0",
"private": true,
"dependencies": {
"@angular/animations": "13.2.0",
"@angular/cdk": "13.2.0",
"@angular/cli": "^13.2.1",
"@angular/common": "13.2.0",
"@angular/compiler": "13.2.0",
"@angular/compiler-cli": "13.2.0",
"@angular/core": "13.2.0",
"@angular/forms": "13.2.0",
"@angular/material": "13.2.0",
"@angular/platform-browser": "13.2.0",
"@angular/platform-browser-dynamic": "13.2.0",
"@angular/router": "13.2.0",
"@ckeditor/ckeditor5-angular": "^2.0.2",
"@ever-co/angular2-wizard": "^0.6.2",
"@ng-bootstrap/ng-bootstrap": "^11.0.0",
"@tinymce/tinymce-angular": "^5.0.0",
"@types/lodash": "^4.14.178",
"base64-js": "^1.5.1",
"bootstrap": "^4.6.1",
"brace": "^0.11.1",
"buffer": "^6.0.3",
"chart.js": "^3.7.0",
"clipboard": "^2.0.8",
"core-js": "3.20.3",
"cross-env": "^7.0.3",
"exceljs": "4.3.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"ieee754": "^1.2.1",
"jspdf": "2.5.0",
"jspdf-autotable": "^3.5.23",
"lodash-es": "^4.17.21",
"ng2-charts": "^3.0.8",
"ngx-ace-editor-wrapper": "^9.1.12",
"ngx-bootstrap": "^8.0.0",
"ngx-clipboard": "15.0.1",
"ngx-infinite-scroll": "^10.0.1",
"ngx-smart-popover": "^1.4.0",
"rxjs": "7.5.2",
"screenfull": "^6.0.1",
"tinymce": "^5.10.2",
"tslib": "^2.3.1",
"web-animations-js": "^2.3.1",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.1",
"@angular/platform-server": "13.2.0",
"@microsoft/signalr": "^6.0.1",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "^3.10.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"concurrently": "^7.0.0",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^4.0.2",
"jasmine-core": "^4.0.0",
"karma": "^6.3.11",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"prettier": "^2.5.1",
"typescript": "4.5.4"
},
"scripts": {
"lint": "eslint app --ext .ts,.json --fix --cache -f json",
"ci:lint": "cross-env NODE_OPTIONS=--max_old_space_size=8192 eslint app --ext .ts,.json -f json -o eslint-report.json",
"build": "cross-env ng build app && ng build conduct && ng build setup",
"build:app": "ng build app",
"build:setup": "ng build setup",
"build:conduct": "ng build conduct",
"server:app": "ng build app",
"serve:setup": "ng serve setup",
"serve:conduct": "ng build conduct",
"build:watch": "ng build --watch",
"build:prod": "ng build --configuration production",
"prod": "cross-env ng build app --configuration production && ng build conduct --configuration production && ng build setup --configuration production",
"tsc": "tsc -p ./wwwroot",
"test": "ng test"
},
"browser": {
"fs": false,
"path": false,
"os": false,
"stream": false,
"crypto": false,
"util": false,
"assert": false,
"zlib": false,
"constants": false
}
}