-
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) · 3.08 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.08 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": "api",
"version": "1.0.0",
"evo_marker": 3,
"main": "dist/index.js",
"scripts": {
"dev": "npm run build && node dist/index.js",
"dev:watch": "tsc -w",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:auth": "jest src/tests/auth.test.ts --verbose",
"test:auth:integration": "node auth-integration-test.js",
"test:embeddings": "node test-embeddings.js",
"test:embeddings:docs": "node test-doc-embeddings.js",
"test:performance": "node performance-test.js",
"test:vector": "jest src/tests/vector-search.test.ts --verbose",
"test:vector:integration": "node vector-integration-test.js",
"lint": "eslint src/**/*.ts",
"test:e2e": "ts-node src/test-scripts/test-complete-e2e-flow.ts",
"test:reset-models": "ts-node src/test-scripts/reset-model-research.ts",
"test:check-models": "ts-node src/test-scripts/reset-model-research.ts --check",
"monitor:flow": "ts-node src/test-scripts/monitor-data-flow.ts",
"test:deepwiki": "ts-node src/test-scripts/test-deepwiki-integration.ts",
"test:system": "ts-node src/test-scripts/test-system-health.ts",
"monitor:db": "ts-node src/test-scripts/monitor-database-performance.ts",
"test:simple": "ts-node src/test-scripts/simple-e2e-test.ts",
"test:manual-review": "ts-node src/test-scripts/test-e2e-manual-review.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "CodeQual API Server with Result Orchestrator",
"dependencies": {
"@codequal/agents": "*",
"@codequal/core": "*",
"@codequal/database": "*",
"@kubernetes/client-node": "^1.3.0",
"@supabase/supabase-js": "^2.50.0",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^5.0.2",
"@types/node-cron": "^3.0.11",
"array-flatten": "^1.1.1",
"axios": "^1.15.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"express-openapi-validator": "^5.1.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"ioredis": "^5.6.1",
"js-yaml": "^4.1.0",
"lru-cache": "^7.18.3",
"marked": "^16.2.0",
"morgan": "^1.10.0",
"node-cron": "^4.1.0",
"pg": "^8.16.3",
"prom-client": "^15.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"utils-merge": "1.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/lru-cache": "^7.10.9",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"@types/supertest": "^2.0.16",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.0",
"uuid": "^9.0.1"
}
}