-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "graphmaster",
"version": "1.0.0",
"description": "A reference platform mapping data domains to graph models, reasoning tasks, and recommended layouts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"setup": "./setup.sh",
"build": "tsc",
"ingest": "ts-node src/scripts/ingest.ts",
"neo4j:instances": "ts-node src/scripts/neo4j-instances.ts",
"node-counts": "ts-node src/scripts/node-counts.ts",
"queries": "ts-node src/scripts/queries.ts",
"api": "ts-node src/server/index.ts",
"dev": "concurrently -n api,web -c \"#1f4d6d,#de7f44\" \"npm:api\" \"npm:web:serve\"",
"web:serve": "node web/server.js",
"neo4j:start": "docker compose up -d",
"neo4j:stop": "docker compose down",
"neo4j:clean": "docker compose down -v",
"neo4j:logs": "docker compose logs -f",
"neo4j:shell": "docker compose exec neo4j cypher-shell -u neo4j -p graphmaster",
"clean": "rm -rf dist",
"test": "node -r ts-node/register --test test/**/*.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"graph",
"neo4j",
"visualization",
"cytoscape",
"knowledge-graph",
"graph-theory",
"layout-algorithms"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@apollo/server": "^4.12.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.9",
"cors": "^2.8.5",
"dataloader": "^2.2.3",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"graphql": "^16.12.0",
"neo4j-driver": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"zod": "^4.3.5"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}