Files
xyflow/package.json
2019-10-08 13:52:38 +02:00

68 lines
1.9 KiB
JSON

{
"name": "react-flow",
"version": "1.0.0",
"module": "dist/ReactFlow.esm.js",
"browser": "dist/ReactFlow.js",
"main": "dist/ReactFlow.js",
"private": true,
"dependencies": {
"@welldone-software/why-did-you-render": "^3.3.6",
"classnames": "^2.2.6",
"d3-selection": "^1.4.0",
"d3-zoom": "^1.8.3",
"easy-peasy": "^3.1.0",
"fast-deep-equal": "^3.0.0-beta.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-draggable": "^3.3.2",
"scheduler": "^0.15.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.4",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.0.2",
"cypress": "^3.4.1",
"husky": "^3.0.8",
"parcel-bundler": "^1.12.4",
"postcss-nested": "^4.1.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-visualizer": "^2.6.0",
"start-server-and-test": "^1.10.4",
"wait-on": "^3.3.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"prop-types": "^15.0.0-0"
},
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"watch": "rollup -w -c",
"dev": "parcel examples/*.html -d examples/build",
"build:example": "parcel build examples/*.html -d examples/build",
"dev:wait": "start-server-and-test dev http-get://localhost:1234/index.html",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cypress": "npm run dev:wait cy:open",
"test": "npm run dev:wait cy:run"
},
"husky": {
"hooks": {}
},
"files": [
"dist"
]
}