Quick wins implemented: - Add ESLint to common_plat (12 projects now linted) - Add test coverage with 80% thresholds - Add security audit for all dependencies - Add bundle analysis for Next.js builds - Update Makefile with audit target Enhanced coverage: - common_plat: +lint, +coverage, +security - dashboards: +coverage, +bundle analysis, +security - Python: +security audit via make target Workflow now validates 7 dimensions instead of 4.
35 lines
966 B
JSON
35 lines
966 B
JSON
{
|
|
"name": "@bytelyst/root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "pnpm -r build",
|
|
"test": "pnpm -r test",
|
|
"test:coverage": "pnpm -r exec vitest run --coverage",
|
|
"typecheck": "pnpm -r exec tsc --noEmit",
|
|
"lint": "pnpm -r exec eslint . --ext .ts,.tsx",
|
|
"lint:fix": "pnpm -r exec eslint . --ext .ts,.tsx --fix",
|
|
"audit": "pnpm -r audit --audit-level moderate",
|
|
"clean": "pnpm -r exec rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"@vitest/coverage-v8": "^3.0.0",
|
|
"eslint": "^9.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@azure/cosmos": ">=4.0.0",
|
|
"bcryptjs": ">=2.4.0",
|
|
"jose": ">=5.0.0",
|
|
"react": ">=18.0.0",
|
|
"zod": "^3.24.0"
|
|
}
|
|
}
|