-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 4.44 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 4.44 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "codequal",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npx turbo run dev",
"build": "bash scripts/build-packages.sh",
"clean-build": "bash scripts/clean-build.sh",
"lint": "npx turbo run lint",
"test": "npx turbo run test",
"test:healthy": "node scripts/manage-test-health.js skip && npx turbo run test",
"test:all": "node scripts/manage-test-health.js enable && npx turbo run test",
"test:report": "node scripts/manage-test-health.js report",
"typecheck": "npx turbo run typecheck",
"lint:fix": "npx turbo run lint -- --fix",
"verify": "bash scripts/verify-quality.sh",
"verify:all": "bash scripts/verify-quality.sh",
"commit": "bash scripts/quick-commit.sh",
"setup:supabase": "bash scripts/setup-supabase.sh",
"deploy:rag": "bash scripts/deploy-rag-production.sh",
"validate": "bash scripts/validate-ci-local.sh",
"validate:strict": "bash scripts/validate-ci-local.sh --max-warnings 0",
"validate:fast": "bash scripts/validate-ci-local.sh --skip-tests",
"validate:package": "bash scripts/validate-ci-local.sh --package",
"setup:hooks": "bash scripts/setup-git-hooks.sh",
"setup:ci": "bash scripts/setup-local-ci.sh",
"pre-commit": "bash scripts/validate-ci-local.sh --max-warnings 5",
"pre-push": "bash scripts/validate-ci-local.sh --max-warnings 0",
"test:regression": "npx ts-node packages/agents/src/standard/tests/regression/run-comprehensive-regression-suite.ts",
"test:regression:core": "npx jest packages/agents/src/standard/tests/regression/core-functionality.test.ts",
"test:regression:debug": "DEBUG=1 npm run test:regression",
"test:regression:fix": "npm run test:regression && echo 'No auto-fix available - manual intervention required'",
"setup:regression-hooks": "cp packages/agents/scripts/git-hooks/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"test:baseline": "npm run test:baseline -w @codequal/test-integration",
"test:baseline:system": "npm run test:baseline:system -w @codequal/test-integration",
"test:baseline:all": "npm run test:baseline:all -w @codequal/test-integration",
"test:dynamic-config": "npm run test:dynamic-config -w @codequal/test-integration",
"test:model-baseline": "npm run test:model-baseline -w @codequal/test-integration",
"test:e2e": "npm run test:e2e -w @codequal/test-integration",
"build:full": "echo '🧹 Cleaning build artifacts...' && npm run clean:all && echo '🔨 Building packages in order...' && npm run build:database && npm run build:core && npm run build:mcp && npm run build:agents && npm run build:test && npm run build:apps && echo '✅ Build complete!'",
"build:database": "cd packages/database && npm run build",
"build:core": "cd packages/core && npm run build",
"build:mcp": "cd packages/mcp-hybrid && npm run build",
"build:agents": "cd packages/agents && npm run build",
"build:test": "cd packages/test-integration && npm run build && cd ../testing && npm run build",
"build:apps": "cd apps/api && npm run build",
"build:quick": "npx tsc --build",
"clean:all": "bash -c \"find . -name 'dist' -type d -path './packages/*' -o -path './apps/*' | xargs rm -rf && find . -name '*.tsbuildinfo' -type f | xargs rm -f\"",
"monitor:storage": "tsx scripts/monitor-digitalocean-storage.ts",
"monitor:supabase": "tsx scripts/monitor-supabase-storage.ts",
"cleanup:storage": "tsx scripts/cleanup-database-storage.ts",
"cleanup:storage:dry": "tsx scripts/cleanup-database-storage.ts --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpsla/codequal.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alpsla/codequal/issues"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-perf-standard": "^1.0.3",
"prettier": "^2.8.4",
"ts-jest": "^29.3.2",
"turbo": "^2.0.0",
"typescript": "^5.0.0"
},
"homepage": "https://github.com/alpsla/codequal#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@supabase/supabase-js": "^2.49.4",
"yaml": "^2.3.1",
"lodash": "4.17.23",
"axios": "0.30.2"
},
"packageManager": "npm@10.8.2"
}