-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "oxlint client",
"format": "prettier --write \"./client/**/*.{ts,tsx,html,scss,json}\"",
"test": "vitest run",
"test:watch": "vitest"
},
"prettier": {
"semi": true,
"singleQuote": false
},
"dependencies": {
"@ant-design/icons": "6.3.2",
"@tanstack/react-query": "5.101.2",
"ajv": "8.20.0",
"antd": "6.5.1",
"classnames": "2.5.1",
"dayjs": "1.11.21",
"es-toolkit": "1.49.0",
"http-status-codes": "2.3.0",
"js-yaml": "5.2.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-router-dom": "7.18.1",
"usehooks-ts": "3.1.1",
"zod": "4.4.3"
},
"devDependencies": {
"@codemirror/lang-javascript": "6.2.5",
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-xml": "6.1.0",
"@codemirror/lang-yaml": "6.1.3",
"@codemirror/language": "6.12.4",
"@codemirror/legacy-modes": "6.5.3",
"@codemirror/lint": "6.9.7",
"@playwright/test": "1.61.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/js-yaml": "4.0.9",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@uiw/react-codemirror": "4.25.11",
"@vitejs/plugin-react": "6.0.3",
"jsdom": "29.1.1",
"mermaid": "11.16.0",
"oxlint": "1.74.0",
"prettier": "3.9.5",
"sass": "1.101.0",
"typescript": "7.0.2",
"vite": "8.1.5",
"vitest": "4.1.10"
}
}