-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.36 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
{
"name": "codebrahma-website",
"private": true,
"description": "Codebrahma.com website built on GatsbyJS",
"version": "0.0.1",
"author": "Anand Narayan <[email protected]>",
"dependencies": {
"@codebrahma/gatsby-theme-blog": "^1.0.14",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@mdx-js/mdx": "^1.0.20",
"@mdx-js/react": "^1.0.20",
"@mdx-js/tag": "^0.20.3",
"babel-preset-react": "^6.24.1",
"bricks": "github:codebrahma/bricks",
"emotion-theming": "^10.0.10",
"gatsby": "^2.13.15",
"gatsby-image": "^2.1.2",
"gatsby-plugin-crisp-chat": "^3.2.1",
"gatsby-plugin-google-analytics": "^2.1.23",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-mdx": "^1.0.56",
"gatsby-plugin-netlify": "^2.1.3",
"gatsby-plugin-offline": "^2.1.1",
"gatsby-plugin-preload-fonts": "^2.5.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-helmet-canonical-urls": "^1.2.0",
"gatsby-plugin-sharp": "^2.1.3",
"gatsby-plugin-sitemap": "^2.2.3",
"gatsby-plugin-zopfli": "^2.0.0",
"gatsby-remark-autolink-headers": "^2.1.3",
"gatsby-remark-copy-linked-files": "^2.1.1",
"gatsby-remark-images": "^3.0.16",
"gatsby-remark-prismjs": "^3.2.11",
"gatsby-source-filesystem": "^2.0.39",
"gatsby-theme-ui": "^0.1.5",
"gatsby-transformer-remark": "^2.4.0",
"gatsby-transformer-sharp": "^2.1.21",
"node-fetch": "2",
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.19",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-recaptcha": "^2.0.1",
"react-helmet": "^5.2.1",
"styled-system": "^5.0.5",
"turndown": "^7.2.0"
},
"devDependencies": {
"css-loader": "^3.0.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"create-netlify-config": "node scripts/index.js",
"build": "gatsby build && yarn run create-netlify-config",
"start": "yarn run develop",
"serve": "gatsby serve",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"preload-fonts": "gatsby-preload-fonts"
}
}