-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "neo-flow-viz",
"type": "module",
"version": "0.0.1",
"description": "React Flow based Neo4j Vizualization Library written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "cd test/storybook && npm run storybook",
"build-storybook": "cd test/storybook && npm run build-storybook",
"npm-install-storybook": "cd test/storybook && npm install",
"prepublish": "tsc",
"neo4j-server": "cd test/neo4j-server && docker compose up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rish-0-0/neo-flow-viz.git"
},
"keywords": [
"reactflow",
"typescript",
"neo4j",
"graph",
"visualization"
],
"author": "Rishabh Anand",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/rish-0-0/neo-flow-viz/issues"
},
"homepage": "https://github.com/rish-0-0/neo-flow-viz#readme",
"devDependencies": {
"@types/react": "^18.3.12",
"typescript": "^5.6.3"
},
"dependencies": {
"@xyflow/react": "^12.3.2",
"elkjs": "^0.9.3",
"react": "^18.3.1",
"react-json-pretty": "^2.2.0"
}
}