-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.63 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.63 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
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
{
"name": "web-terminal",
"version": "0.1.11",
"description": "Web-based terminal interface",
"license": "GPL-3.0",
"type": "module",
"main": "app.js",
"scripts": {
"sync-versions": "node packaging/scripts/sync-versions.js",
"generate-docs": "node packaging/scripts/generate-docs.js",
"cinstall:backend": "npm ci",
"cinstall:backend:nodev": "npm ci --omit=dev",
"cinstall:frontend": "cd web && npm run cinstall",
"cinstall:frontend:nodev": "cd web && npm run cinstall:nodev",
"cinstall:all": "npm run cinstall:backend && npm run cinstall:frontend",
"cinstall:all:nodev": "npm run cinstall:backend:nodev && npm run cinstall:frontend:nodev",
"prebuild": "npm run sync-versions",
"build": "cd web && npm run build",
"start": "npm run build && node app.js",
"dev": "npm run build && node app.js",
"local-api": "node index.js",
"lint:backend": "eslint . --ignore-pattern 'web/**'",
"lint:backend:fix": "eslint . --ignore-pattern 'web/**' --fix",
"lint:frontend": "cd web && npm run lint",
"lint:frontend:fix": "cd web && npm run lint:fix",
"lint:all": "npm run lint:backend && npm run lint:frontend",
"lint": "npm run lint:all",
"lint:fix:all": "npm run lint:backend:fix && npm run lint:frontend:fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:frontend": "cd web && npm run test",
"test:all": "npm run test:run && npm run test:frontend",
"security:audit": "npm audit --audit-level moderate",
"security:vulnerabilities": "npm audit && better-npm-audit audit",
"security:licenses": "license-checker-rseidelsohn --onlyAllow 'MIT;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;ISC;GPL-3.0;LGPL-2.1;LGPL-3.0;MPL-2.0;CC0-1.0;CC-BY-3.0;CC-BY-4.0;Unlicense;Python-2.0;Unicode-DFS-2016;Apache 2.0;BlueOak-1.0.0' --excludePrivatePackages",
"security:licenses-report": "license-checker-rseidelsohn --out licenses.json --json",
"security:supply-chain": "audit-ci --moderate",
"security:backend": "npm run security:vulnerabilities && npm run security:licenses && npm run security:supply-chain",
"security:frontend": "cd web && npm run security:all",
"security:all": "npm run security:backend && npm run security:frontend"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"escape-html": "^1.0.3",
"eslint-plugin-import": "^2.32.0",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.2",
"express-basic-auth": "^1.2.1",
"helmet": "^8.1.0",
"i18n": "^0.15.2",
"js-yaml": "^4.1.0",
"ws": "^8.16.0",
"node-pty": "^1.0.0",
"json-merger": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"license-checker-rseidelsohn": "^4.4.2",
"lusca": "^1.7.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"openid-client": "^6.8.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-oauth2": "^1.8.0",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.18.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/ui": "^4.0.15",
"audit-ci": "^7.1.0",
"better-npm-audit": "^3.11.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"vitest": "^4.0.15"
}
}