-
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) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "devsec-scanner",
"version": "0.1.0",
"private": true,
"description": "Local-first security scanner: run SAST/SCA/IaC/DAST scans via a CLI and visualize a unified report in a React dashboard.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@11.7.0",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @devsec/web dev",
"scan": "pnpm --filter @devsec/cli scan",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "playwright test",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
}
}