-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "sdframeworks",
"version": "2.1.0",
"description": "SDFrame is a curated software design framework reference for engineers, architects, and AI agents.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"prebuild": "node scripts/validate-data.js && node scripts/generate-all.js",
"build": "vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"sitemap": "node scripts/generate-sitemap.js"
},
"keywords": [
"sdframe",
"software-design",
"software-architecture",
"design-patterns",
"system-design",
"ai-agents"
],
"author": "Caldis",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"d3": "^7.9.0",
"lucide-react": "^1.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-intersection-observer": "^10.0.3",
"react-router-dom": "^7.14.0",
"recharts": "^3.8.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/d3": "^7.4.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"typescript": "^6.0.2",
"vite": "^6.4.1"
}
}