-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 926 Bytes
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
{
"name": "graph-data-modeling-org",
"version": "1.0.0",
"description": "Neo4j Graph Data Modeling & Migration Automation — static site built with Eleventy",
"type": "module",
"scripts": {
"clean": "rm -rf _site",
"build": "eleventy",
"serve": "eleventy --serve",
"start": "eleventy --serve",
"deploy": "npm run build && wrangler deploy",
"deploy:dry": "npm run build && wrangler deploy --dry-run",
"cf:dev": "npm run build && wrangler dev"
},
"keywords": [
"neo4j",
"graph",
"data-modeling",
"cypher",
"eleventy",
"11ty"
],
"author": "graph-data-modeling.org",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.0.0"
},
"dependencies": {
"katex": "^0.16.11",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.4.0",
"prismjs": "^1.29.0"
}
}