-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.37 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.37 KB
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
{
"name": "csetweb-ng",
"version": "13.0.0",
"license": "MIT",
"main": "main-electron.js",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:fast": "ng serve --configuration ultra-fast",
"build": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"start:electron": "npx electron .",
"start:electron-with-build": "ng build --configuration production --source-map=false --base-href ./ && npx electron .",
"build:electron": "npm run setup:electron-build-files && npx @electron/packager temp-electron \"CSET\" --out=electron-builds --arch=x64 --prune --asar --overwrite --icon=src/assets/icons/favicon_cset.ico --win32metadata.CompanyName=\"CISA\" && shx rm -rf temp-electron",
"version:electron": "npx electron --version && @electron/packager --version",
"setup:electron-build-files": "shx rm -rf temp-electron && shx mkdir -p temp-electron/node_modules && shx cp -r {package.json,main-electron.js,main-electron-preload.js,License.txt,NOTICE.txt,dist} temp-electron && shx cp -r node_modules/{electron-log,electron-find-on-page,lodash} temp-electron/node_modules"
},
"dependencies": {
"@angular-devkit/schematics": "^20.3.18",
"@angular-eslint/schematics": "^20.7.0",
"@angular-slider/ngx-slider": "^20.0.0",
"@angular/animations": "^20.3.17",
"@angular/cdk": "^20.2.14",
"@angular/cli": "^20.3.18",
"@angular/common": "^20.3.17",
"@angular/compiler": "^20.3.17",
"@angular/compiler-cli": "^20.3.17",
"@angular/core": "^20.3.17",
"@angular/elements": "^20.3.17",
"@angular/forms": "^20.3.17",
"@angular/localize": "^20.3.17",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.17",
"@angular/platform-browser-dynamic": "^20.3.17",
"@angular/router": "^21.2.0",
"@babel/helpers": "^7.28.6",
"@fortawesome/angular-fontawesome": "^3.0.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@jsverse/transloco": "^8.2.0",
"@kolkov/angular-editor": "^3.0.4",
"@ng-bootstrap/ng-bootstrap": "^19.0.1",
"@ngstack/code-editor": "^9.0.0",
"@swimlane/ngx-charts": "^23.1.0",
"@types/jquery": "^3.5.33",
"@types/sanitize-html": "^2.16.0",
"ag-grid-angular": "^34.3.1",
"angular2-hotkeys": "^16.0.1",
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"daisyui": "^5.5.14",
"dompurify": "^3.3.1",
"electron-find-on-page": "^1.1.0",
"electron-log": "^5.4.3",
"file-saver": "^2.0.5",
"font-awesome": "^4.7.0",
"fuse.js": "^7.1.0",
"html-to-pdfmake": "^2.5.32",
"jquery": "^3.7.1",
"locate-path": "^8.0.0",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"material-design-icons": "^3.0.1",
"monaco-editor": "^0.55.1",
"ng2-currency-mask": "^13.0.3",
"ngx-csv": "^0.3.2",
"pdfmake": "^0.3.3",
"rxjs": "^7.8.2",
"sanitize-html": "^2.17.0",
"sass": "^1.97.2",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular/build": "^20.3.18",
"@electron/packager": "^19.0.1",
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"electron": "^39.2.7",
"postcss": "^8.5.6",
"shx": "^0.4.0",
"tailwindcss": "^4.1.18",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}