This commit is contained in:
2024-10-05 11:25:22 +07:00
commit e882b33118
57 changed files with 8083 additions and 0 deletions

38
package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@contactlab/ds-tokens": "^3.3.0",
"antd": "^5.4.7",
"dagre": "^0.8.5",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flow-renderer": "^10.3.17",
"react-router-dom": "^6.26.2",
"reactflow": "^11.7.0",
"sass": "^1.62.1",
"uuid": "^9.0.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"vite": "^4.3.2"
}
}