-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.99 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": "open-qa",
"version": "1.0.0",
"description": "AI-Powered Open QA — Intelligent testing toolkit with OpenHuman-style UI",
"type": "module",
"bin": {
"open-qa": "./src/cli/index.ts"
},
"scripts": {
"test:healing": "npx playwright test tests/healing.spec.ts",
"test": "npx playwright test",
"test:ci": "npx playwright test",
"heal": "npx tsx src/agents/self-healing/index.ts",
"explore": "npx tsx src/agents/explore/index.ts",
"run:healing": "npx tsx src/agents/self-healing/index.ts",
"run:datagen": "npx tsx src/skills/data-gen/index.ts",
"test:data-gen": "npx tsx src/skills/data-gen/index.ts",
"run:bugreport": "npx tsx src/skills/log-analyzer/index.ts",
"run:visual-regression": "npx tsx src/agents/visual-regression/index.ts",
"run:auto-pom": "npx tsx src/agents/auto-pom/index.ts",
"run:visual-a11y": "npx tsx src/agents/visual-a11y/index.ts",
"verify:demos": "node ./scripts/verify-demos.js",
"typecheck": "tsc --noEmit && npx tsc --project ui/tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yml}\"",
"ui:dev": "cd ui && npx vite",
"ui:build": "cd ui && npx vite build",
"ui:preview": "cd ui && npx vite preview",
"server:dev": "npx tsx server/index.ts",
"dev": "npx concurrently \"npm run server:dev\" \"npm run ui:dev\"",
"setup": "npx playwright install",
"postinstall": "npx playwright install chromium"
},
"keywords": [
"open-qa",
"qa",
"automation",
"ai",
"playwright",
"claude",
"testing",
"openhuman"
],
"author": "Edi Mazor",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.96.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@google/generative-ai": "^0.24.1",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"@playwright/test": "^1.60.0",
"better-sqlite3": "^12.10.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.19.2",
"i18next": "^23.16.8",
"lucide-react": "^0.460.0",
"playwright": "^1.60.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.3",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.5"
}
}