-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "zero-trust-network-lab",
"version": "1.0.0",
"description": "Zero Trust Network Implementation for Educational Purposes",
"main": "index.js",
"scripts": {
"start": "node monitoring/dashboard/server.js",
"dev": "nodemon monitoring/dashboard/server.js",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"zero-trust",
"network-security",
"cybersecurity",
"sdp",
"microsegmentation",
"pki"
],
"author": "Zero Trust Lab",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.4",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"node-forge": "^1.3.1",
"ws": "^8.14.2",
"axios": "^1.6.2",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"jest": "^29.7.0",
"eslint": "^8.55.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}