Spaces:
Sleeping
Sleeping
File size: 1,248 Bytes
c8210cf |
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 |
{
"name": "test-react-flow",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --host --mode dev",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier": "prettier --write ."
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@types/classnames": "^2.3.1",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-react": "^3.1.0",
"husky": "^9.0.11",
"less": "^4.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"terser": "^5.16.9",
"typescript": "^4.9.3",
"vite": "^4.2.1",
"vite-babel-plugin": "^0.0.2"
},
"dependencies": {
"@antv/x6": "^2.18.1",
"@microsoft/fetch-event-source": "^2.0.1",
"antd": "^5.18.3",
"axios": "^1.3.5",
"classnames": "^2.5.1",
"elkjs": "^0.9.3",
"js-cookie": "^3.0.1",
"react-markdown": "^9.0.1",
"react-router": "^6.11.2",
"react-router-dom": "^6.11.2",
"reactflow": "^11.11.3",
"rehype-raw": "^7.0.0"
},
"lint-staged": {
"**/*.{ts, tsx, less, module.less, json, md, .html}": "prettier --write ."
}
}
|