-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "d3-blog",
"description": "Over Engineered Data Viz Blog",
"version": "1.0.0",
"author": "Santhosh Soundararajan <[email protected]>",
"bugs": {
"url": "https://github.com/Santhosh114/gatsby-mdx-blog/issues"
},
"dependencies": {
"@mapbox/rehype-prism": "0.3.1",
"@mdx-js/loader": "^0.20.1",
"@mdx-js/mdx": "^0.20.1",
"@mdx-js/tag": "^0.18.0",
"core-js": "^2.5.7",
"d3": "^5.5.0",
"gatsby": "^2.1.21",
"gatsby-cli": "^2.4.6",
"gatsby-image": "next",
"gatsby-mdx": "^0.4.0",
"gatsby-plugin-brotli": "^1.0.0",
"gatsby-plugin-feed": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-netlify": "^2.0.1",
"gatsby-plugin-netlify-cache": "^1.0.0",
"gatsby-plugin-offline": "next",
"gatsby-plugin-react-helmet": "next",
"gatsby-plugin-sharp": "next",
"gatsby-plugin-typography": "next",
"gatsby-remark-copy-linked-files": "next",
"gatsby-remark-images": "next",
"gatsby-remark-prismjs": "next",
"gatsby-remark-responsive-iframe": "next",
"gatsby-remark-smartypants": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-remark": "next",
"gatsby-transformer-sharp": "next",
"loader-utils": "^1.1.0",
"lodash": "^4.17.5",
"prism-themes": "1.0.1",
"prismjs": "^1.15.0",
"radium": "^0.25.1",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"react-helmet": "^5.2.0",
"react-icons": "^3.0.4",
"react-tweet-embed": "^1.1.1",
"react-twitter-widgets": "^1.7.1",
"react-typography": "^0.16.13",
"retext": "6.0.1",
"retext-smartypants": "3.0.2",
"semiotic": "1.18.0",
"typography": "^0.16.17",
"typography-breakpoint-constants": "^0.16.18",
"unist-util-visit": "1.4.0"
},
"devDependencies": {
"eslint": "^5.15.0",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^2.0.1",
"prettier": "^1.12.0"
},
"homepage": "https://github.com/Santhosh114/gatsby-mdx-blog#readme",
"keywords": [
"Data Visualization D3.js React.js Gatsby.js MDX GraphQL"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/Santhosh114/gatsby-mdx-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}