-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 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
{
"name": "syndra",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:prod": "vite build --mode production",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^6.2.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-query": "^5.100.14",
"@xyflow/react": "^12.10.2",
"@zxcvbn-ts/core": "^3.0.4",
"antd": "^6.4.3",
"axios": "^1.16.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.21",
"echarts": "^6.1.0",
"html-to-image": "^1.11.13",
"i18next": "^26.2.0",
"jsencrypt": "^3.5.4",
"keepalive-for-react": "^5.0.11",
"lodash-es": "^4.18.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-draggable": "^4.5.0",
"react-error-boundary": "^6.1.2",
"react-hotkeys-hook": "^5.3.2",
"react-i18next": "^17.0.8",
"react-router": "^7.15.1",
"spark-md5": "^3.0.2",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.19",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/react-resizable": "^4.0.0",
"@types/spark-md5": "^3.0.5",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vite-plugin-compression2": "^2.5.3",
"vite-plugin-mock-dev-server": "^2.3.0"
},
"engines": {
"node": ">=22.12.0"
}
}