-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.94 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
{
"name": "architecture-advisor",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A quality-attribute-driven architecture decision framework — transparent, client-side, MAVT-based.",
"license": "MIT",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && node scripts/generate-seo.mjs",
"seo:generate": "node scripts/generate-seo.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"size": "node scripts/check-bundle-size.mjs",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"content:validate": "node scripts/check-content.mjs",
"lang:check": "node scripts/check-language-purity.mjs",
"test:e2e": "playwright test"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@tabler/icons-react": "^3.45.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^10.0.0",
"@playwright/test": "^1.61.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.5.4",
"axe-core": "^4.12.1",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.19",
"prettier": "^3.9.5",
"tailwindcss": "^3.4.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10",
"vitest-axe": "^0.1.0"
}
}