-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.68 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.68 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "cia-compliance-manager",
"version": "0.8.34",
"private": true,
"type": "module",
"dependencies": {
"chart.js": "^4.5.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"find:unused": "npm run knip",
"test": "vitest",
"lint": "eslint",
"lint:src": "eslint src",
"test:licenses": "license-compliance --direct --allow 'MIT;ISC;0BSD;BSD-2-Clause;BSD-3-Clause;Apache-2.0;Unlicense;CC0-1.0'",
"test:widgets": "vitest run --coverage --coverage.reportOnFailure --reporter=verbose --exclude \"src/components/widgets/**/*.test.{ts,tsx}\"",
"test:core": "vitest run --coverage --coverage.reportOnFailure --reporter=verbose --exclude \"src/components/widgets/**/*.test.{ts,tsx}\"",
"test:detailed": "vitest run --reporter=verbose --reporter=json --outputFile=docs/test-results/test-results.json",
"test:failed": "vitest run --run --reporter=verbose --mode=development",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage --coverage.reportOnFailure",
"test:coverage": "vitest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:e2e": "start-server-and-test 'vite --port 5173' http://localhost:5173 'cypress run'",
"test:e2ereportmerge": "npx mochawesome-merge docs/cypress/mochawesome/*.json > docs/cypress/mochawesome-all.json",
"test:e2ereporthtmlall": "npx marge -f index.html -o docs/cypress/mochawesome docs/cypress/mochawesome-all.json",
"pretest:e2e": "bash .devcontainer/init-xvfb.sh",
"cypress:install": "cypress install",
"cypress:verify": "cypress verify",
"test:ci": "cross-env CI=true vitest run --coverage",
"cypress:open:with-server": "start-server-and-test 'vite --port 5173' http://localhost:5173 'cypress open'",
"merge-test-reports": "node --experimental-json-modules ./cypress/support/plugins/merge-reports.js",
"docs": "typedoc --options typedoc.enhanced.json",
"docs:uml": "typedoc --options typedoc.uml.json",
"docs:markdown": "typedoc -options typedoc.markdown.json",
"docs:dependencies": "mkdir -p docs/dependencies && depcruise --config .dependency-cruiser.cjs --output-type dot src | dot -T svg > docs/dependencies/module-dependencies.svg || echo 'Dependency diagram generation failed - continuing' && touch docs/dependencies/module-dependencies.svg",
"docs:diagrams": "node scripts/generate-architecture-diagrams.js",
"docs:bundle": "npm run docs && npm run docs:uml && npm run docs:markdown && npm run docs:dependencies && npm run docs:diagrams",
"test:e2e:report": "npm run test:e2e",
"knip": "knip"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@tailwindcss/postcss": "4.1.16",
"@testing-library/cypress": "^10.1.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/fs-extra": "11.0.4",
"@types/node": "24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/testing-library__jest-dom": "6.0.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-istanbul": "4.0.4",
"@vitest/coverage-v8": "^4.0.4",
"@vitest/ui": "4.0.4",
"autoprefixer": "^10.4.21",
"canvas": "3.2.0",
"cross-env": "^10.1.0",
"cypress": "^15.5.0",
"cypress-junit-reporter": "1.3.1",
"cypress-multi-reporters": "2.0.5",
"cypress-react-selector": "^3.0.0",
"cypress-real-events": "1.15.0",
"cypress-wait-until": "3.0.2",
"dependency-cruiser": "^17.1.0",
"eslint": "9.38.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "16.4.0",
"jsdom": "27.0.1",
"knip": "5.66.3",
"license-compliance": "3.0.1",
"madge": "^8.0.0",
"mocha-junit-reporter": "2.2.1",
"mochawesome": "7.1.4",
"mochawesome-merge": "5.0.0",
"mochawesome-report-generator": "6.3.0",
"postcss": "^8.5.6",
"start-server-and-test": "^2.1.2",
"tailwindcss": "^4.1.16",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2",
"vite": "^7.1.12",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.4"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"cypress-env": {
"nodeModulePaths": [
"src"
]
}
}