forked from binnyva/gatsby-garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gatsby-garden",
"version": "2.2.2",
"description": "Gatsby Garden lets you create a static html version of your markdown notes. You can convert your Obsidian Zettelkasten Notes into a public Digital Garden.",
"homepage": "https://github.com/binnyva/gatsby-garden",
"keywords": [
"markdown",
"mdx",
"static-site-generator",
"gatsby",
"gatsby-plugin",
"gatsby-theme",
"zettelkasten",
"digital-garden",
"obsidian"
],
"author": "Binny V A <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@tippyjs/react": "^4.2.6",
"gatsby": "^4.11.1",
"gatsby-awesome-pagination": "^0.3.6",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-feed": "^4.5.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-local-search": "^2.0.1",
"gatsby-plugin-mdx": "^3.2.0",
"gatsby-plugin-postcss": "^5.0.0",
"gatsby-plugin-purgecss": "^6.1.1",
"gatsby-plugin-react-helmet": "^5.0.0",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-remark-images": "^6.4.0",
"gatsby-remark-mermaid": "^2.1.0",
"gatsby-remark-obsidian": "^0.5.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-remark": "^5.2.0",
"gatsby-transformer-sharp": "^4.4.0",
"postcss": "^8.3.6",
"puppeteer": "^13.1.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-graph-vis": "^1.0.7",
"react-helmet": "^6.1.0",
"react-use-flexsearch": "^0.1.1",
"react-vis-network-graph": "^3.0.1",
"tippy.js": "^6.3.7",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"prettier": "2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/binnyva/gatsby-garden"
},
"bugs": {
"url": "https://github.com/binnyva/gatsby-garden/issues"
}
}