-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
94 lines (94 loc) · 3.11 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
{
"name": "gatsby-blog-template",
"description": "GatsbyJS Blog Template for blogging purpose.",
"version": "1.3.3",
"author": "Lam Pham <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"gatsby": "^3.6.2",
"gatsby-image": "^3.6.0",
"gatsby-plugin-catch-links": "^3.6.0",
"gatsby-plugin-feed": "^3.6.0",
"gatsby-plugin-google-analytics": "^3.6.0",
"gatsby-plugin-image": "^1.6.0",
"gatsby-plugin-lodash": "^4.6.0",
"gatsby-plugin-manifest": "^3.6.0",
"gatsby-plugin-netlify": "^3.6.1",
"gatsby-plugin-nprogress": "^3.6.0",
"gatsby-plugin-react-helmet": "^4.6.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^4.6.0",
"gatsby-plugin-sharp": "^3.6.0",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-twitter": "^3.6.0",
"gatsby-remark-autolink-headers": "^4.3.0",
"gatsby-remark-copy-linked-files": "^4.3.0",
"gatsby-remark-embed-video": "^3.1.1",
"gatsby-remark-images": "^5.3.0",
"gatsby-remark-prismjs": "^5.3.0",
"gatsby-remark-responsive-iframe": "^4.3.0",
"gatsby-source-filesystem": "^3.6.0",
"gatsby-transformer-remark": "^4.3.0",
"gatsby-transformer-sharp": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-sass": "^6.0.0",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-disqus-comments": "^1.4.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-share": "^4.4.0",
"react-twitter-widgets": "^1.10.0",
"shiba-css": "^1.0.2",
"slug": "^5.0.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.2.0",
"prettier": "^2.3.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"standard-version": "^9.3.0",
"stylefmt": "^6.0.3",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"write-good": "^1.0.8"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"first-release": "standard-version --first-release",
"prerelease": "standard-version"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}