forked from PatchMon/PatchMon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.96 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.96 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
{
"name": "patchmon",
"version": "1.4.2",
"description": "Linux Patch Monitoring System",
"license": "AGPL-3.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"install:all": "npm install && npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"prepare": "lefthook install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build": "npm run build:backend && npm run build:frontend",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"audit": "npm audit --audit-level=high",
"audit:all": "npm audit",
"outdated": "npm outdated --long",
"security:secrets": "docker run --rm -v \"${PWD}:/repo\" zricethezav/gitleaks:latest detect --source /repo --no-git",
"security:codeql": "bash -c 'command -v codeql >/dev/null 2>&1 || { echo \"CodeQL CLI not found. Install from https://github.com/github/codeql-action#running-codeql-cli-in-your-ci-system\"; exit 1; }; rm -rf .codeql-db; codeql database create .codeql-db --language=javascript --source-root=. && codeql database analyze .codeql-db javascript-security-extended --format=sarif-latest --output=codeql-results.sarif && echo \"Results in codeql-results.sarif\"'",
"security": "npm run security:secrets && npm run security:codeql"
},
"overrides": {
"minimatch": "10.2.2",
"glob": "13.0.6",
"filelist": {
"minimatch": "10.2.2"
},
"test-exclude": {
"minimatch": "10.2.2"
},
"esbuild": "0.25.12"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"concurrently": "^8.2.2",
"lefthook": "^1.13.4",
"minimatch": "10.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}