-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.3 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
91
92
93
94
95
96
97
98
{
"name": "attack-workbench-frontend",
"version": "3.2.0",
"description": "An application allowing users to explore, create, annotate, and share extensions of the MITRE ATT&CK® knowledge base. This repository contains an Angular-based web application providing the user interface for the ATT&CK Workbench application.",
"repository": {
"type": "git",
"url": "https://github.com/mitre-attack/attack-workbench-frontend.git"
},
"keywords": [
"cti",
"cyber-threat-intelligence",
"attack",
"mitre-attack",
"mitre-corporation",
"ctid",
"mitre-attack",
"cybersecurity",
"stix"
],
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"build:analyze": "ng build --configuration analyze --stats-json",
"analyze:report": "npm run build:analyze && npx esbuild-visualizer --metadata dist/app/stats.json --filename dist/app/esbuild-report.html && open dist/app/esbuild-report.html",
"test": "ng test",
"e2e": "ng e2e",
"prepare": "husky || true",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"check:lockfile": "bash scripts/check-package-lock.sh"
},
"dependencies": {
"@angular/animations": "^19.2.25",
"@angular/cdk": "^19.2.16",
"@angular/common": "^19.2.25",
"@angular/compiler": "^19.2.25",
"@angular/core": "^19.2.25",
"@angular/forms": "^19.2.25",
"@angular/material": "^19.2.16",
"@angular/material-moment-adapter": "^19.2.16",
"@angular/platform-browser": "^19.2.25",
"@angular/platform-browser-dynamic": "^19.2.25",
"@angular/router": "^19.2.25",
"@ng-matero/extensions": "^19.5.1",
"diff-match-patch-ts": "^0.8.0",
"jdenticon": "^3.2.0",
"marked": "^15.0.11",
"moment": "^2.29.4",
"ngx-autosize": "^2.0.4",
"ngx-jdenticon": "^2.0.0",
"ngx-logger": "^5.0.12",
"ngx-markdown": "^19.1.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"uuid": "^14.0.0",
"xlsx": "^0.18.5",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.27",
"@angular/cli": "^19.2.27",
"@angular/compiler-cli": "^19.2.25",
"@codedependant/semantic-release-docker": "^5.1.1",
"@commitlint/config-conventional": "^20.5.3",
"@types/jasmine": "^6.0.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^20.19.37",
"angular-eslint": "^19.4.0",
"codelyzer": "^6.0.0",
"commitlint": "^20.5.0",
"esbuild-visualizer": "^0.7.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "^3.8.1",
"prettier-eslint": "^16.3.0",
"semantic-release": "^25.0.3",
"ts-node": "^10.9.1",
"tslint": "~6.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
}
}