-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.19 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
{
"name": "DonnieWestBlog",
"description": "My Blog",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "eslint 'src/**/*.js'",
"format": "prettier-eslint --write 'src/**/*.js'"
},
"eslintConfig": {
"extends": "koality",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"fetch": true,
"it": true
}
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@mapbox/rehype-prism": "^0.3.1",
"@mdx-js/mdx": "^1.0.21",
"@mdx-js/react": "^1.0.21",
"@mdx-js/tag": "^0.20.3",
"gatsby": "^2.13.4",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-feed": "^2.3.2",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-netlify": "^2.1.0",
"gatsby-plugin-offline": "^2.2.1",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.2.2",
"gatsby-plugin-sitemap": "^2.2.1",
"gatsby-plugin-typography": "^2.3.0",
"gatsby-remark-images": "^3.1.3",
"gatsby-remark-prismjs": "^3.3.1",
"gatsby-source-filesystem": "^2.1.2",
"gatsby-transformer-remark": "^2.6.0",
"normalize.css": "^8.0.1",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"typography": "^0.16.19"
},
"devDependencies": {
"babel-preset-gatsby": "^0.2.1",
"eslint-config-koality": "4.0.2",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"prettier": "1.18.2",
"prettier-eslint-cli": "^5.0.0",
"remark-lint": "^6.0.5"
}
}