-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.94 KB
/
package.json
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
91
92
{
"name": "vite-react-universal-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode production",
"build:test": "tsc && vite build --mode test",
"build:docker": "tsc && vite build --mode docker",
"preview": "vite preview",
"lint": "tsc && eslint . --ext .js,.ts,.jsx,.tsx --fix",
"format": "prettier --write \"./**/*.{html,tsx,ts,js,json,md}\"",
"prepare": "husky install",
"docker:build": "tsc && docker build -t docker-react .",
"docker:run": "docker rm -f docker-react && docker run --name docker-react -d -p 80:8082 docker-react",
"release:local": "pnpm docker:build && pnpm docker:run",
"log:tree": "tree -N -I \"node_modules|.git|.idea\" -a"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@antv/g": "^6.0.13",
"@antv/g6": "^5.0.21",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@formily/antd-v5": "^1.2.3",
"@formily/core": "^2.3.2",
"@formily/react": "^2.3.2",
"@xyflow/react": "12.2.0",
"ahooks": "^3.8.0",
"antd": "^5.21.0",
"axios": "^1.6.8",
"classnames": "^2.5.1",
"comlink": "^4.4.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.1.7",
"framesync": "^6.1.2",
"html2canvas": "^1.4.1",
"immer": "^10.1.1",
"js-cookie": "^3.0.5",
"konva": "^9.3.15",
"less": "^4.2.0",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"nprogress": "^0.2.0",
"rc-dropdown": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.10",
"react-konva-utils": "^1.0.6",
"react-router-dom": "^6.22.3",
"socket.io-client": "^4.8.0",
"tdesign-icons-react": "^0.3.5",
"tdesign-react": "^1.7.7",
"use-immer": "^0.10.0",
"uuid": "^10.0.0",
"vconsole": "^3.15.1",
"web-vitals": "^4.2.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-replace": "^5.0.7",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.12.7",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.54.0",
"eslint-config-code-style-lint-react-ts": "^3.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.75.0",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"vite": "^5.2.9",
"vite-plugin-comlink": "^5.0.1",
"vite-plugin-compression": "^0.5.1"
}
}