-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 5.56 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 5.56 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
{
"name": "webui-next",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"preinstall": "node scripts/check-node-version.mjs",
"env:check": "node scripts/check-node-version.mjs",
"dev": "npm run env:check && vite",
"build": "npm run env:check && vite build",
"preview": "npm run env:check && vite preview",
"test": "npm run env:check && node scripts/patch-html-encoding-sniffer.mjs && vitest run",
"test:watch": "npm run env:check && node scripts/patch-html-encoding-sniffer.mjs && vitest",
"test:scripts": "node --test scripts/*.test.mjs",
"test:bff": "node --test bff/*.test.js",
"typecheck": "tsc --noEmit",
"audit:mutations": "node scripts/audit-mutations.mjs --write work/audits/mutations.md",
"audit:mutations:check": "node scripts/audit-mutations.mjs --fail-on-warn",
"audit:i18n": "node scripts/audit-i18n.mjs --fail",
"audit:csp": "node scripts/audit-csp.mjs",
"audit:dev-tls": "node scripts/audit-dev-tls.mjs",
"lint:tailwind": "node scripts/lint-tailwind-tokens.mjs",
"lint:patterns": "node scripts/lint-banned-patterns.mjs",
"lint": "npm run lint:tailwind && npm run lint:patterns",
"ci:pr": "npm run env:check && npm run lint && npm run audit:i18n && npm run audit:csp && npm run typecheck && npm run test:scripts && npm run test:bff && npm test",
"ci:check": "npm run env:check && npm run lint && npm run audit:i18n && npm run audit:csp && npm run audit:i18n-structure && npm run audit:pages && npm run audit:structural && npm run audit:component-contracts && npm run audit:active-docs && npm run audit:overlays && npm run audit:lookup-primitives && npm run audit:api-barrel-imports && npm run audit:ui-strings:check && npm run audit:mutations:check && npm run typecheck && npm run test:scripts && npm run test:bff && npm test",
"rc:check": "npm run env:check && npm run ci:check && npm run e2e:smoke && npm run e2e:smoke:mobile",
"rc:notes": "node scripts/rc-notes.mjs",
"e2e:install": "npm run env:check && node scripts/playwright.mjs install",
"e2e": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test",
"e2e:container": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --container",
"e2e:screenshots": "npm run env:check && E2E_START_SERVER=1 E2E_CAPTURE_SCREENSHOTS=1 node scripts/playwright.mjs test --container e2e/specs/app/screenshot_capture.spec.ts --project=chromium",
"e2e:smoke": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --smoke --project=chromium --workers=2",
"e2e:smoke:mobile": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --smoke-mobile --project=mobile-chrome --workers=2",
"e2e:broad": "npm run e2e:smoke && npm run e2e:smoke:mobile",
"e2e:full": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --project=chromium --workers=2",
"e2e:nightly": "npm run e2e:full && npm run e2e:smoke:mobile",
"e2e:pr": "npm run e2e:pr:desktop && npm run e2e:pr:mobile",
"e2e:pr:desktop": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --pr-smoke --project=chromium",
"e2e:pr:mobile": "npm run env:check && E2E_START_SERVER=1 node scripts/playwright.mjs test --pr-smoke-mobile --project=mobile-chrome",
"e2e:live:manual": "npm run env:check && node scripts/playwright.mjs test --live-manual --project=chromium",
"e2e:live:audit": "npm run env:check && node scripts/live-audit.mjs",
"e2e:live:regression": "npm run env:check && node scripts/live-regression-audit.mjs",
"e2e:live:routes": "npm run env:check && node scripts/live-route-sweep.mjs",
"e2e:live:mutations": "npm run env:check && node scripts/live-mutation-audit.mjs",
"e2e:live:vps": "npm run env:check && node scripts/live-vps-certification.mjs",
"audit:ui-strings": "node scripts/audit-ui-strings.mjs --write work/audits/ui_strings.md",
"audit:ui-strings:check": "node scripts/audit-ui-strings.mjs --fail --write work/audits/ui_strings.md",
"audit:pages": "node scripts/audit-page-integrity.mjs",
"audit:active-docs": "node scripts/audit-active-docs.mjs",
"audit:component-contracts": "node scripts/audit-component-contracts.mjs",
"audit:structural": "node scripts/audit-structural-budgets.mjs",
"audit:structural:baseline": "node scripts/audit-structural-budgets.mjs --write-baseline",
"audit:overlays": "node scripts/audit-overlay-contracts.mjs",
"audit:lookup-primitives": "node scripts/audit-lookup-primitives.mjs",
"audit:api-barrel-imports": "node scripts/audit-api-barrel-imports.mjs",
"audit:i18n-structure": "node scripts/audit-i18n-structure.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@tanstack/react-query": "^5.90.19",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "7.18.2"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"jsdom": "^27.4.0",
"postcss": "^8.5.25",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.5",
"vitest": "^4.1.11"
},
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
}
}