-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.29 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
{
"name": "datacat-editor",
"version": "2.0",
"license": "MIT",
"private": true,
"dependencies": {
"@apollo/client": "^4.0.10",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@graphql-codegen/cli": "^6.1.0",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@mui/system": "^7.3.6",
"@mui/x-data-grid": "^8.21.0",
"@mui/x-tree-view": "^8.21.0",
"@rdfjs/data-model": "^2.1.1",
"@tolgee/react": "^6.2.7",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@xyflow/react": "^12.10.0",
"dayjs": "^1.11.19",
"exceljs": "^4.4.0",
"file-saver": "^2.0.5",
"graphiql": "^5.2.2",
"graphql": "^16.12.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.4",
"jszip": "^3.10.1",
"monaco-graphql": "^1.7.3",
"n3": "^1.26.0",
"node-fetch": "^3.3.2",
"notistack": "^3.0.2",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-hook-form": "^7.68.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.10.1",
"react-window": "^2.2.3",
"remark-gfm": "^4.0.1",
"rxjs": "^7.8.2",
"typeface-roboto": "^1.1.13",
"uuid": "^13.0.0"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"analyze": "npx vite-bundle-analyzer dist",
"test": "vitest",
"preview": "vite preview",
"generate-hooks": "graphql-codegen",
"generate-possible-types": "node genPossibleTypes.js",
"release": "release-it",
"knip": "knip"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"release-it": {
"publish": false
},
"devDependencies": {
"@graphql-codegen/client-preset": "^5.2.1",
"@types/file-saver": "^2.0.7",
"@types/n3": "^1.26.1",
"@types/node": "^25.0.0",
"@vitejs/plugin-react": "^5.1.2",
"knip": "^5.73.3",
"monaco-editor": "^0.52.2",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-bundle-analyzer": "^1.3.1",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.15"
}
}