-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
119 lines (119 loc) · 4.32 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "bloodhound",
"version": "4.3.1",
"description": "Graph Theory for Active Directory",
"prettier": {
"tabWidth": 4,
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true
},
"keywords": [
"Graph",
"Active Directory",
"Azure",
"Security"
],
"homepage": "https://github.com/BloodHoundAD/Bloodhound",
"repository": {
"type": "git",
"url": "https://github.com/BloodHoundAD/Bloodhound.git"
},
"bugs": "https://github.com/BloodHoundAD/Bloodhound/issues",
"license": "GPL-3.0",
"author": "Rohan Vazarkar <[email protected]> (https://blog.cptjesus.com)",
"contributors": [
"Andy Robbins <[email protected]> (https://www.wald0.com)",
"Will Schroeder <[email protected]> (https://www.harmj0y.net)",
"Ryan Hausknecht (https://hausec.com/)"
],
"main": "main.js",
"engines": {
"node": "~16"
},
"scripts": {
"start": "run-s start:client",
"start:server": "babel-node server.js",
"start:client": "cross-env NODE_ENV=development electron .",
"dev": "run-p start:**",
"compile": "webpack --config webpack.config.production.js",
"package": "electron-packager . BloodHound --overwrite --prune --ignore=./*.zip --ignore=./BloodHound.* --ignore=BloodHoundExampleDB.db --ignore=docs --ignore=Ingestors --ignore=node_modules/\\.bin",
"package:linux": "run-s \"package -- --platform=linux --arch=x64,armv7l,arm64\"",
"package:macos": "run-s \"package -- --platform=darwin --arch=all --icon=src/img/icon.icns\"",
"package:win32": "run-s \"package -- --platform=win32 --arch=all --icon=src/img/icon.ico\"",
"build:win32": "run-s compile package:win32",
"build:linux": "run-s compile package:linux",
"build:macos": "run-s compile package:macos",
"build": "sh -c 'if [ \"$(run-s env:os)\" == \"win32\" ]; then run-s compile \"package -- --icon=src/img/icon.ico ${*}\"; else run-s compile \"package -- --icon=src/img/icon.icns ${*}\" ; fi' --",
"env:os": "node -e \"console.log(process.platform)\""
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/node": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"core-js": "^3.23.5",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"electron": "^11.5.0",
"electron-packager": "15.4.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.16.2",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"style-loader": "^1.3.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"adm-zip": "^0.5.9",
"bootstrap": "^3.4.1",
"clsx": "^1.2.1",
"dagre": "^0.8.5",
"electron-store": "^1.3.0",
"eventemitter2": "^6.4.6",
"fontfaceobserver": "^2.3.0",
"framer-motion": "^1.11.1",
"he": "^1.2.0",
"image-size": "^0.8.3",
"image-type": "^4.1.0",
"is-zip-file": "^1.0.2",
"jquery": "^3.6.0",
"linkurious": "^1.5.1",
"lodash": "^4.17.21",
"md5-file": "^4.0.0",
"mustache": "^2.3.0",
"neo4j-driver": "^4.4.6",
"prop-types": "^15.8.1",
"react": "^16.13.1",
"react-alert": "^7.0.3",
"react-alert-template-basic": "^1.0.2",
"react-bootstrap": "^0.33.1",
"react-bootstrap-typeahead": "^4.2.3",
"react-dom": "^16.13.1",
"react-if": "^4.1.4",
"react-images": "^1.1.7",
"react-photo-gallery": "^8.0.0",
"react-transition-group": "^4.4.2",
"sanitize-filename": "^1.6.3",
"semver": "^7.3.7",
"stream-chain": "^2.2.5",
"stream-json": "^1.7.4",
"uuid": "^8.3.2"
}
}