-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 3.34 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gatsby-Blog-advanced",
"description": "GatsbyJS Blog starter that includes examples for markdown use cases.",
"version": "1.1.0",
"author": "'Moataz Mohammady' <[email protected]>",
"scripts": {
"rename": " node.exe scripts/rename.js ./content",
"develop": "gatsby develop",
"dev": "yarn run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "yarn run clean && yarn run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"dependencies": {
"@atlaskit/button": "^16.3.0",
"@atlaskit/form": "^8.5.4",
"@atlaskit/select": "^15.2.12",
"@atlaskit/textarea": "^4.3.4",
"@atlaskit/textfield": "^5.1.10",
"@atlaskit/tooltip": "^17.5.8",
"@chakra-ui/gatsby-plugin": "^2.0.1",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.6",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@formspree/react": "^2.3.0",
"dotenv": "^16.0.0",
"framer-motion": "^4",
"gatsby": "^2.19.49",
"gatsby-image": "^2.2.14",
"gatsby-plugin-catch-links": "^2.1.5",
"gatsby-plugin-feed": "^2.3.9",
"gatsby-plugin-google-analytics": "^2.1.11",
"gatsby-plugin-htaccess": "^1.2.1",
"gatsby-plugin-manifest": "^2.2.9",
"gatsby-plugin-nprogress": "^2.1.4",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.5",
"gatsby-plugin-sass": "^2.1.12",
"gatsby-plugin-sharp": "^2.2.18",
"gatsby-plugin-sitemap": "^2.2.9",
"gatsby-plugin-twitter": "^2.1.4",
"gatsby-plugin-typography": "^2.3.7",
"gatsby-remark-autolink-headers": "^2.1.8",
"gatsby-remark-copy-linked-files": "^2.1.13",
"gatsby-remark-images": "^3.1.19",
"gatsby-remark-prismjs": "^3.3.9",
"gatsby-remark-responsive-iframe": "^2.2.10",
"gatsby-source-filesystem": "^2.1.18",
"gatsby-transformer-remark": "^2.6.19",
"gatsby-transformer-sharp": "^2.2.12",
"lodash": "^4.17.15",
"moment": "^2.29.4",
"prismjs": "^1.27.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-google-recaptcha": "^2.1.0",
"react-helmet": "^5.2.1",
"react-icons": "^4.3.1",
"react-share": "^2.4.0",
"react-twitter-widgets": "^1.7.1",
"react-typography": "^0.16.19",
"react-uuid": "^1.0.2",
"typography": "^0.16.19",
"typography-theme-stow-lake": "^0.16.19",
"url-join": "^4.0.1"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.3",
"gh-pages": "^2.1.1",
"prettier": "^1.18.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"sass": "^1.51.0",
"stylefmt": "^6.0.3",
"stylelint": "^13.2.1",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-scss": "^3.15.0",
"write-good": "^1.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}