-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 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
{
"name": "ddd-tool",
"private": true,
"version": "0.2.79",
"description": "DDD Tool — Design Driven Development desktop app for visual flow-based software design",
"author": "Murat Hüseyin Candan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cybersoloss/ddd-tool.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test:specs": "tsx tests/e2e/auto-test/auto-test-runner.ts",
"test:roundtrip": "tsx tests/e2e/roundtrip/round-trip-test.ts",
"test:roundtrip:offline": "tsx tests/e2e/roundtrip/round-trip-test.ts --offline",
"demo:dev": "VITE_DEMO_MODE=true vite",
"demo:build": "VITE_DEMO_MODE=true vite build",
"demo:preview": "VITE_DEMO_MODE=true vite preview",
"demo:test": "npx playwright test --config demo/playwright/playwright.config.ts",
"demo:lifecycle": "npx playwright test --config demo/playwright/playwright.config.ts demo/playwright/lifecycle-demo.spec.ts",
"demo:feature-preview": "npx playwright test --config demo/playwright/feature-preview.config.ts",
"demo:warapp": "npx playwright test --config demo/playwright/warapp-medium.config.ts"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2.3.5",
"@xyflow/react": "^12.10.0",
"clsx": "^2.1.1",
"elkjs": "^0.11.1",
"lucide-react": "^0.564.0",
"nanoid": "^5.1.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"uuid": "^13.0.0",
"yaml": "^2.8.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}