-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1019 Bytes
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
{
"name": "devsecops-monorepo",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm --filter devsecops-web lint && node scripts/lint-python.js",
"lint:all": "pnpm -r --if-present lint",
"lint:python": "node scripts/lint-python.js",
"scan:secrets": "node scripts/scan-secrets.js",
"smoke:test": "node scripts/smoke-tests.js",
"dast:evaluate": "node scripts/evaluate-dast-policy.js",
"check": "pnpm format:check && pnpm lint && pnpm scan:secrets"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2"
},
"pnpm": {
"overrides": {
"tar": "^7.5.19",
"postcss": "^8.5.3",
"nanoid": "^3.3.8",
"cross-spawn": "^7.0.6",
"micromatch": "^4.0.8",
"braces": "^3.0.3",
"ws": "^8.18.1"
}
}
}