-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "react-dataflow-editor",
"version": "0.1.6",
"description": "A generic drag-and-drop dataflow editor for React",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeltg/react-dataflow-editor.git"
},
"author": "Joel Gustafson",
"license": "MIT",
"bugs": {
"url": "https://github.com/joeltg/react-dataflow-editor/issues"
},
"homepage": "https://github.com/joeltg/react-dataflow-editor#readme",
"dependencies": {
"@types/d3-drag": "^3.0.1",
"@types/d3-quadtree": "^3.0.2",
"@types/d3-selection": "^3.0.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^17.0.11",
"d3-drag": "^3.0.0",
"d3-quadtree": "^3.0.1",
"d3-selection": "^3.0.0",
"nanoid": "^3.1.23",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0"
},
"devDependencies": {
"react": "^17.0.2",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": "^17.0.1"
}
}