-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.16 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.16 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
{
"name": "cortexpilot-dashboard",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "DASHBOARD_VITEST_POOL=${DASHBOARD_VITEST_POOL:-forks} vitest run --config vitest.config.mts --coverage",
"test:target": "DASHBOARD_VITEST_POOL=${DASHBOARD_VITEST_POOL:-forks} vitest run --config vitest.config.mts",
"test:ct-regression": "DASHBOARD_VITEST_POOL=${DASHBOARD_VITEST_POOL:-forks} vitest run --config vitest.config.mts --coverage --coverage.thresholds.lines=0 --coverage.thresholds.statements=0 --coverage.thresholds.functions=0 --coverage.thresholds.branches=0 tests/command_tower_ui.test.tsx tests/command_tower_async_home.suite.tsx tests/command_tower_async_session.suite.tsx",
"ui:audit": "bash ../../scripts/ui_audit_gate.sh",
"lint": "npm run typecheck",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@cortexpilot/frontend-api-client": "file:../../packages/frontend-api-client",
"@cortexpilot/frontend-api-contract": "file:../../packages/frontend-api-contract",
"@cortexpilot/frontend-shared": "file:../../packages/frontend-shared",
"@radix-ui/react-slot": "1.2.4",
"axe-core": "4.11.1",
"class-variance-authority": "0.7.1",
"diff2html": "3.4.56",
"dompurify": "3.3.3",
"is-wsl": "2.2.0",
"next": "16.2.1",
"playwright": "1.58.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"styled-jsx": "5.1.7"
},
"devDependencies": {
"@axe-core/cli": "4.10.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.2.0",
"@types/react": "19.2.14",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.0.18",
"jsdom": "29.0.1",
"lighthouse": "13.0.3",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"pnpm": {
"overrides": {
"basic-ftp": "5.2.0",
"brace-expansion@5": "5.0.5",
"lodash-es": "4.18.1",
"minimatch@3": "3.1.4",
"minimatch@7": "7.4.8",
"minimatch@9": "9.0.7",
"picomatch@2": "2.3.2",
"picomatch@4": "4.0.4",
"rollup": "4.59.0",
"vite": "8.0.5"
}
}
}