-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
{
"name": "ontokit-web",
"version": "0.4.0-dev",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@scalar/api-reference-react": "^0.8.52",
"@tanstack/react-query": "^5.62.0",
"@xyflow/react": "^12.10.1",
"clsx": "^2.1.0",
"d3": "^7.9.0",
"elkjs": "^0.11.0",
"lucide-react": "^1.7.0",
"monaco-editor": "^0.55.1",
"next": "^16.2.2",
"next-auth": "^5.0.0-beta.25",
"next-intl": "^4.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.0"
},
"overrides": {
"dompurify": "^3.3.2",
"minimatch@3": "^3.1.3",
"minimatch@9": "^9.0.7",
"ajv@8": "^8.18.0"
},
"devDependencies": {
"@codecov/webpack-plugin": "^1.9.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.16.0",
"eslint-config-next": "^16.2.2",
"jsdom": "^28.1.0",
"postcss": "^8.4.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}