-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.19 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
{
"name": "contextflow",
"version": "0.12.0",
"description": "Visual DDD context mapper with Value Stream, Distillation, and Strategic views",
"type": "module",
"private": false,
"license": "MIT",
"author": "Paul Rayner",
"repository": {
"type": "git",
"url": "https://github.com/virtualgenius/contextflow.git"
},
"bugs": {
"url": "https://github.com/virtualgenius/contextflow/issues"
},
"homepage": "https://contextflow.virtualgenius.com",
"keywords": [
"ddd",
"domain-driven-design",
"bounded-context",
"context-mapping",
"wardley-mapping",
"strategic-design",
"core-domain-chart",
"distillation",
"value-stream",
"team-topologies",
"sociotechnical",
"architecture",
"visualization"
],
"scripts": {
"dev": "vite --open",
"dev:local": "bash scripts/dev-local.sh",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"mutate": "npm install --no-save vitest@3.2.4 && stryker run; npm install --no-save vitest@4.0.6",
"mutate:changed": "npm install --no-save vitest@3.2.4 && stryker run --incremental; npm install --no-save vitest@4.0.6",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"check:release": "node scripts/check-release.mjs",
"perf": "tsx scripts/measure-perf.ts",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "prettier --write",
"src/**/*.{css,json}": "prettier --write"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"clipper-lib": "^6.4.2",
"clsx": "^2.1.0",
"d3-polygon": "^3.0.1",
"d3-shape": "^3.2.0",
"framer-motion": "^11.0.0",
"lucide-react": "^0.460.0",
"posthog-js": "^1.354.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.11.4",
"tailwind-merge": "^2.5.2",
"y-partyserver": "^0.0.51",
"yjs": "^13.6.27",
"zustand": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@tailwindcss/forms": "^0.5.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/d3-polygon": "^3.0.2",
"@types/d3-shape": "^3.1.7",
"@types/node": "^24.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"gh-pages": "^6.3.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^27.1.0",
"lint-staged": "^16.3.2",
"postcss": "^8.4.41",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.13",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.56.1",
"vite": "^5.4.8",
"vitest": "^4.0.6",
"wrangler": "^4.51.0"
}
}