-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"name": "maestro-coding",
"private": true,
"version": "0.95.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "node scripts/run-server.mjs",
"check:env": "node scripts/preflight.mjs",
"start:app": "npm run check:env && node scripts/start-app.mjs",
"test": "npm run test:server && npm run test:ui",
"test:server": "node --test tests/*.test.mjs",
"test:ui": "vitest run --passWithNoTests",
"test:e2e": "playwright test",
"smoke:integration": "bash scripts/smoke-agent-integration.sh",
"smoke:lanes": "node scripts/smoke-project-lanes.mjs",
"qa": "bash scripts/qa-agent.sh",
"setup": "sh scripts/setup_env.sh",
"configure": "node scripts/configure.js",
"project:list": "node scripts/projects.js list",
"project:add": "node scripts/projects.js add",
"project:use": "node scripts/projects.js use"
},
"dependencies": {
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.4.1",
"jsdom": "^28.1.0",
"prompts": "^2.4.2",
"tailwindcss": "^4.1.6",
"vite": "^6.3.5",
"vitest": "^4.0.18",
"ws": "^8.19.0"
}
}