-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.25 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
{
"name": "graphle",
"private": true,
"version": "1.32.0",
"type": "module",
"description": "A graph-based tool for grappling with relationships between dependent systems.",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run integration",
"test:e2e": "playwright test",
"prepare": "husky",
"release": "semantic-release"
},
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=22"
},
"dependencies": {
"@mantine/core": "^9.4.1",
"@mantine/hooks": "^9.4.1",
"@mantine/notifications": "^9.4.1",
"@mantine/spotlight": "^9.4.1",
"@mantine/vanilla-extract": "^9.4.1",
"@tabler/icons-react": "^3.44.0",
"@xyflow/react": "^12.11.2",
"d3-dsv": "^3.0.1",
"dexie": "^4.4.4",
"dexie-react-hooks": "^4.4.0",
"elkjs": "^0.11.1",
"html-to-image": "^1.11.13",
"lz-string": "^1.5.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/d3-dsv": "^3.0.7",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vanilla-extract/css": "^1.21.1",
"@vanilla-extract/vite-plugin": "^5.2.4",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fake-indexeddb": "^6.2.5",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"semantic-release": "^25.0.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}