-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.71 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 5.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "gui-lop",
"version": "1.0.0",
"description": "The Generative UI & Human-in-the-Loop Orchestration Platform (GUI-LOP)",
"main": "src/backend/bootstrap/index.js",
"scripts": {
"start": "node src/backend/bootstrap/index.js",
"dev": "nodemon src/backend/bootstrap/index.js",
"dev:v1": "nodemon src/backend/bootstrap/index.js",
"start:frontend": "concurrently \"npm run dev\" \"cd src/frontend && npm start\"",
"dev:full": "concurrently \"npm run dev\" \"cd src/frontend && npm start\"",
"test": "playwright test",
"test:backend": "jest tests/backend/",
"test:contracts": "jest --config jest.contracts.config.js",
"test:contracts:watch": "jest --config jest.contracts.config.js --watch",
"test:auth": "jest tests/security/auth-*.test.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:security": "node tests/security/security-test-runner.js",
"test:security:ci": "node tests/security/security-test-runner.js --ci",
"test:security:coverage": "jest tests/security/ --coverage --coverageReporters=json --coverageReporters=html",
"test:integration": "jest tests/integration/",
"test:unit": "jest tests/backend/",
"test:api": "jest tests/api/",
"test:api:unit": "jest tests/api/unit/",
"test:api:integration": "jest tests/api/integration/",
"test:api:e2e": "jest tests/api/e2e/",
"test:api:performance": "jest tests/api/e2e/api-performance.test.js",
"test:auth-system": "node scripts/test-authentication.js",
"test:load": "node tests/load/automated-load-test-suite.js",
"test:load:auth": "node tests/load/scenarios/authentication-load-test.js",
"test:load:workflows": "node tests/load/scenarios/workflow-load-test.js",
"test:load:websocket": "node tests/load/scenarios/websocket-load-test.js",
"test:load:database": "node tests/load/scenarios/database-load-test.js",
"test:load:redis": "node tests/load/scenarios/redis-load-test.js",
"test:load:quick": "node -e \"const Suite = require('./tests/load/automated-load-test-suite'); new Suite({testScenarios: ['authentication'], targetConcurrentUsers: 20}).runTestSuite().then(console.log).catch(console.error)\"",
"test:load:full": "node tests/load/automated-load-test-suite.js",
"bench": "node tests/benchmarks/index.js",
"bench:workflow": "node tests/benchmarks/scenarios/workflow-throughput.bench.js",
"bench:auth": "node tests/benchmarks/scenarios/auth-throughput.bench.js",
"bench:domain": "node tests/benchmarks/scenarios/domain-purity.bench.js",
"build": "tsc",
"lint": "echo 'Add linting here'",
"lint:arch": "npx --yes dependency-cruiser --config .dependency-cruiser.cjs src/backend",
"typecheck": "echo 'typecheck: no TS files yet; project is pure ESM JS (placeholder for future TS adoption)'",
"playwright": "playwright test",
"db:migrate": "node database/migrations/migrate.js migrate",
"db:migrate:status": "node database/migrations/migrate.js status",
"db:seed": "node database/seeds/seed.js seed",
"db:seed:force": "node database/seeds/seed.js seed --force",
"db:reset": "node database/seeds/seed.js reset",
"db:backup": "bash database/scripts/backup.sh backup",
"db:restore": "node database/scripts/restore.js restore",
"db:list": "node database/scripts/restore.js list",
"db:verify": "node database/scripts/restore.js verify",
"db:health": "node -e \"import('./database/config/database.js').then(m => m.default.initialize().then(() => m.default.healthCheck().then(console.log).finally(() => m.default.close())))\"",
"db:setup": "npm run db:migrate && npm run db:seed",
"db:setup:dev": "npm run db:migrate && npm run db:seed:force",
"docker:build": "docker build -t gui-lop:local -f Dockerfile .",
"docker:run": "docker run --rm -e DATABASE_URL='' -e REDIS_URL='' -e JWT_SECRET=local-dev-secret -p 3001:3001 gui-lop:local",
"helm:lint": "helm lint infrastructure/helm/gui-lop"
},
"keywords": [
"gui",
"hitl",
"orchestration",
"react",
"authentication",
"security",
"testing",
"load-testing",
"performance",
"scalability"
],
"author": "GUI-LOP Development Team",
"license": "MIT",
"type": "module",
"dependencies": {
"accept-language-parser": "^1.5.0",
"agentic-jujutsu": "^2.3.4",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.3.0",
"helmet": "^8.1.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"rate-limit-redis": "^4.2.3",
"redis": "^5.9.0",
"semver": "^7.7.3",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@jest/core": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@playwright/test": "^1.56.1",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"artillery-plugin-expect": "^2.20.0",
"async": "^3.2.6",
"autocannon": "^8.0.0",
"concurrently": "^9.2.1",
"form-data": "^2.5.5",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-node": "^30.2.0",
"jest-runner": "^29.7.0",
"jest-runtime": "^29.7.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"testcontainers": "^10.13.2",
"@testcontainers/postgresql": "^10.13.2",
"@testcontainers/redis": "^10.13.2",
"typescript": "^5.9.3",
"ws": "^8.18.3"
}
}