-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "opaflix",
"version": "0.3.0",
"description": "Okta Privileged Access Session Replay Tool - Web application for replaying OPA SSH and RDP sessions from AWS S3",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "NODE_ENV=development node src/index.js",
"lint": "eslint src/ --ignore-pattern 'src/graph/**'",
"test": "echo \"No tests configured\" && exit 0",
"build:graph": "node esbuild.graph.mjs",
"watch:graph": "node esbuild.graph.mjs --watch"
},
"keywords": [
"okta",
"opa",
"session-replay",
"ssh",
"rdp",
"asciinema",
"s3"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-rolesanywhere": "^3.1014.0",
"@aws-sdk/client-s3": "^3.410.0",
"@aws-sdk/client-sts": "^3.1014.0",
"@aws-sdk/credential-provider-node": "^3.972.21",
"@aws-sdk/s3-request-presigner": "^3.1014.0",
"@okta/oidc-middleware": "^5.5.1",
"@smithy/signature-v4": "^5.3.12",
"connect-pg-simple": "^9.0.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^8.0.6",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"lusca": "^1.7.0",
"pg": "^8.11.0",
"winston": "^3.11.0",
"@xyflow/react": "^12.4.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.25.0",
"eslint": "^10.1.0",
"globals": "^17.4.0"
},
"engines": {
"node": "24.x"
}
}