-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
{
"name": "infram",
"version": "1.2.1",
"main": "server/index.js",
"repository": "https://github.com/swissmakers/infra-manager.git",
"author": "Swissmakers GmbH",
"license": "MIT",
"dependencies": {
"@simplewebauthn/server": "^13.2.3",
"archiver": "^7.0.1",
"axios": "^1.13.6",
"bcrypt": "^6.0.0",
"decompress": "^4.2.1",
"esbuild": "^0.27.3",
"express": "^5.2.1",
"express-jsdoc-swagger": "^1.8.0",
"express-rate-limit": "^8.3.0",
"express-ws": "^5.0.2",
"glob": "^13.0.6",
"joi": "^18.0.2",
"js-yaml": "^4.1.1",
"ldapts": "^8.1.7",
"openid-client": "^6.8.2",
"sequelize": "^6.37.8",
"sharp": "^0.34.5",
"speakeasy": "^2.0.0",
"sqlite3": "^5.1.7",
"ssh2": "^1.17.0",
"uuid": "^13.0.0",
"webdav": "^5.9.0",
"winston": "^3.19.0",
"ws": "^8.19.0"
},
"devDependencies": {
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"nodemon": "^3.1.14",
"vitepress": "^1.6.4",
"vitepress-openapi": "^0.1.17"
},
"scripts": {
"dev:server": "nodemon --ignore docs --ignore vendor --ignore client --ignore mobile --ignore data server/index.js",
"dev:client": "cd client && yarn run dev",
"dev:guacd": "./scripts/build-guacd.sh",
"dev": "concurrently --kill-others-on-fail \"yarn dev:server\" \"yarn dev:client -- --host\" \"yarn dev:guacd\"",
"docs:openapi": "node scripts/generate-openapi.js",
"docs:dev": "yarn docs:openapi && vitepress dev docs",
"docs:build": "yarn docs:openapi && vitepress build docs",
"docs:preview": "vitepress preview docs",
"security:update": "./scripts/ci-security.sh update",
"security:audit": "./scripts/ci-security.sh audit",
"security:all": "./scripts/ci-security.sh all",
"security:sbom": "SECURITY_GENERATE_SBOM=1 ./scripts/ci-security.sh audit"
},
"resolutions": {
"tar": "^7.5.10",
"@tootallnate/once": "^3.0.1",
"esbuild": "^0.25.0",
"glob": "^11.1.0",
"minimatch": "^10.2.3",
"qs": "^6.14.2",
"lodash": "^4.17.23",
"dottie": "^2.0.7",
"fast-xml-parser": "^5.3.8"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}