forked from INCYDE-GmbH/drawio-plugin-attackgraphs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "drawio-plugin-attackgraphs",
"version": "1.4.4",
"description": "An Attack Graphs Extension for Draw.io",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"docker": "docker compose -f docker/docker-compose.yml build --no-cache app",
"start": "docker compose -f docker/docker-compose.yml up -d",
"stop": "docker compose -f docker/docker-compose.yml down",
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"lint": "eslint src --ext .ts --max-warnings=0",
"test": "playwright test --project chrome"
},
"keywords": [],
"author": "",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@playwright/test": "^1.55.0",
"@typed-mxgraph/typed-mxgraph": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"copy-webpack-plugin": "^13.0.1",
"cypress": "^15.1.0",
"eslint": "^9.34.0",
"eslint-plugin-github": "^6.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"ace-builds": "^1.43.3",
"acorn": "^8.15.0",
"js-interpreter": "^6.0.1"
}
}