-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.31 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
{
"name": "electrical-plan-editor",
"version": "1.18.2",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:vite": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"quality:dependency-audit": "node scripts/quality/check-npm-audit-allowlist.mjs",
"quality:pwa": "node scripts/quality/check-pwa-build-artifacts.mjs",
"quality:i18n": "node scripts/quality/check-i18n-copy.mjs && node scripts/quality/check-i18n-copy-fixture.mjs",
"coverage:ui:report": "node scripts/quality/report-ui-coverage.mjs",
"bundle:metrics:report": "node scripts/quality/report-bundle-metrics.mjs",
"build:bundle:report": "npm run -s build && npm run -s bundle:metrics:report",
"test": "vitest",
"test:ci": "env LAYOUT_RESPONSIVENESS_BUDGET_MS=25000 vitest run --coverage --pool=forks --maxWorkers=2 --testTimeout=15000",
"test:ci:segmentation:check": "node scripts/quality/run-vitest-segmented.mjs check",
"test:ci:fast": "env LAYOUT_RESPONSIVENESS_BUDGET_MS=25000 node scripts/quality/run-vitest-segmented.mjs fast --pool=forks --maxWorkers=2 --testTimeout=15000",
"test:ci:ui": "node scripts/quality/run-vitest-segmented.mjs ui --pool=forks --maxWorkers=2 --testTimeout=15000",
"test:ci:ui:shard": "node scripts/quality/run-vitest-segmented.mjs ui-shard --pool=forks --maxWorkers=4 --testTimeout=15000",
"test:ci:slow-top": "node scripts/quality/report-slowest-tests.mjs --top=10",
"test:ci:ui:slow-top": "node scripts/quality/run-vitest-segmented.mjs ui-slow-top --top=10",
"test:e2e": "node scripts/quality/run-playwright-e2e.mjs",
"ci:blocking": "logics-manager lint --require-status && logics-manager sync close-eligible-requests && git diff --exit-code -- logics/request && logics-manager audit --legacy-cutoff-version 1.1.0 --group-by-doc --skip-ac-traceability && npm run -s lint && npm run -s typecheck && npm run -s quality:i18n && npm run -s quality:dependency-audit && npm run -s test:ci:segmentation:check && npm run -s test:ci:fast -- --coverage && npm run -s test:ci:ui && npm run -s test:e2e && npm run -s build:vite && npm run -s quality:pwa",
"ci:local": "npm run -s ci:blocking"
},
"dependencies": {
"exceljs": "^4.4.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0"
},
"overrides": {
"@babel/core": "7.29.7",
"minimatch@3.1.5": {
"brace-expansion": "1.1.16"
},
"minimatch@5.1.9": {
"brace-expansion": "2.1.3"
},
"minimatch@10.2.5": {
"brace-expansion": "5.0.8"
},
"tmp": "0.2.7",
"uuid": "11.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^15.15.0",
"jsdom": "^29.1.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.8"
}
}