forked from opencybersecurityalliance/cacao-roaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "cacao-roaster",
"version": "1.2.0",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"prettier": "prettier '**/*.{js,jsx,ts,tsx}' --write",
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.5.0",
"npm": ">=9.8.0"
},
"author": "Cyentific AS",
"license": "Apache-2.0",
"description": "A web application for parsing, manipulating, visualizing, signing and countersigning CACAO v2.0 playbooks.",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"clean-webpack-plugin": "^4.0.0",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.2.2",
"prettier-eslint": "^16.2.0",
"ts-loader": "^9.4.2",
"typescript": "^5.3.3",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"dependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/uuid": "^9.0.1",
"ajv": "^8.12.0",
"bpmn-font": "^0.12.0",
"buffer": "^6.0.3",
"cacao2-js": "file:lib/cacao2-js",
"canonicalize": "^2.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"diagram-js": "^12.1.0",
"diagram-js-grid": "^0.2.0",
"diagram-js-minimap": "^4.1.0",
"jsrsasign": "^10.8.6",
"lodash.isequal": "^4.5.0",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.2",
"uuid": "^9.0.0"
}
}