* refactor(css): only load base styles, add css task, cleanup exports * style(base): add edge label bg * refactor(css): use css-utils * feat(core): add Panel component * refactor(background): cleanup * refactor(css-handling): cleanup
33 lines
881 B
JSON
33 lines
881 B
JSON
{
|
|
"name": "react-flow-examples",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "yarn run copystyles && next dev",
|
|
"copystyles": "cp ../../packages/core/src/styles/theme-default.css ./styles/theme-default.css",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@preconstruct/next": "^4.0.0",
|
|
"@react-flow/background": "11.0.0",
|
|
"@react-flow/controls": "11.0.0",
|
|
"@react-flow/core": "11.0.0",
|
|
"@react-flow/minimap": "11.0.0",
|
|
"dagre": "^0.8.5",
|
|
"localforage": "^1.10.0",
|
|
"next": "12.2.2",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dagre": "^0.7.47",
|
|
"eslint": "8.19.0",
|
|
"eslint-config-next": "12.2.2",
|
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
"postcss-nested": "^5.0.6",
|
|
"postcss-preset-env": "^7.7.2"
|
|
}
|
|
}
|