-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 4.32 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 4.32 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
{
"name": "hackops",
"version": "0.1.0",
"description": "HackOps - Hackathon management platform for structured Microsoft Azure learning events.",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "lefthook install",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"lint:md:fix": "markdownlint-cli2 --fix '**/*.md' '#node_modules'",
"lint:links": "find . -name '*.md' ! -path './node_modules/*' ! -path './infra/*' | xargs -I {} markdown-link-check {} --config .markdown-link-check.json",
"lint:links:docs": "find docs -name '*.md' | xargs -I {} markdown-link-check {} --config .markdown-link-check.json",
"lint:cost-estimate-templates": "echo '⚠️ Merged into lint:artifact-templates' && node scripts/validate-artifact-templates.mjs",
"lint:artifact-templates": "node scripts/validate-artifact-templates.mjs",
"lint:h2-sync": "node scripts/validate-h2-sync.mjs",
"fix:artifact-h2": "node scripts/fix-artifact-h2.mjs",
"lint:version-sync": "node scripts/validate-version-sync.mjs",
"lint:deprecated-refs": "node scripts/validate-no-deprecated-refs.mjs",
"lint:mcp-config": "node scripts/validate-mcp-config.mjs",
"lint:docs-freshness": "node scripts/check-docs-freshness.mjs",
"lint:agent-frontmatter": "node scripts/validate-agent-frontmatter.mjs",
"lint:skills-format": "node scripts/validate-skills-format.mjs",
"lint:instruction-frontmatter": "node scripts/validate-instruction-frontmatter.mjs",
"lint:governance-refs": "node scripts/validate-governance-refs.mjs",
"validate:instruction-refs": "node scripts/validate-instruction-references.mjs",
"lint:prose": "vale --config .vale.ini docs/ .github/ README.md || echo 'Vale not installed - run: brew install vale'",
"lint:json": "find . -name '*.json' ! -path './node_modules/*' ! -path './infra/*' ! -path './.devcontainer/*' ! -path './.vscode/*' ! -path './scripts/workflow-generator/node_modules/*' -exec sh -c 'node -e \"JSON.parse(require(\\\"fs\\\").readFileSync(\\\"{}\\\")); console.log(\\\"✓ {}\\\")\" 2>&1 || echo \"✗ {} - Invalid JSON\"' \\;",
"lint:yaml": "find . \\( -name '*.yml' -o -name '*.yaml' \\) ! -path './node_modules/*' ! -path './infra/*' -exec yamllint -c .yamllint.yml {} \\; 2>/dev/null || echo 'yamllint not installed - run: pip install yamllint'",
"lint:python": "cd mcp/azure-pricing-mcp && python -m ruff check src/ tests/",
"lint:python:fix": "cd mcp/azure-pricing-mcp && python -m ruff check --fix src/ tests/",
"validate:vscode": "node scripts/validate-vscode-config.mjs",
"validate:agents": "npm run lint:agent-frontmatter && npm run lint:skills-format",
"test:1109": "npm run validate:vscode && npm run validate:agents && echo '✅ VS Code 1.109 validation passed'",
"fetch:deprecations": "node scripts/fetch-azure-deprecations.mjs",
"validate": "npm run validate:all",
"validate:business-rules": "node scripts/validate-business-rules.mjs",
"validate:versions": "node scripts/validate-version-manifest.mjs",
"validate:all": "npm run lint:md && npm run lint:links:docs && npm run lint:artifact-templates && npm run lint:h2-sync && npm run lint:version-sync && npm run lint:deprecated-refs && npm run lint:mcp-config && npm run lint:agent-frontmatter && npm run lint:skills-format && npm run lint:instruction-frontmatter && npm run lint:governance-refs && npm run validate:instruction-refs && npm run validate:business-rules && npm run validate:versions && npm run lint:json && npm run lint:python && echo '✅ All validations passed'",
"build": "turbo run build",
"type-check": "turbo run type-check",
"test": "turbo run test"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"fast-xml-parser": "^5.4.1",
"lefthook": "^2.1.4",
"markdown-link-check": "^3.12.0",
"markdownlint-cli2": "^0.22.0",
"turbo": "^2.8.20",
"typescript": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jonathan-vella/hack-ops.git"
},
"keywords": [
"azure",
"hackathon",
"microhack",
"leaderboard",
"scoring",
"azure-sql",
"nextjs",
"bicep"
],
"author": "Jonathan Vella",
"license": "MIT",
"packageManager": "npm@11.8.0"
}