forked from JaeYeopHan/gatsby-starter-bee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.99 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
{
"name": "rinae.dev",
"private": true,
"description": "Gatsby blog (thanks to @JaeYeopHan)",
"version": "0.1.0",
"author": "rinae[adhrinae]<[email protected]>",
"bugs": {
"url": "https://github.com/adhrinae/rinae.dev/issues"
},
"dependencies": {
"gatsby": "^2.17.7",
"gatsby-image": "^2.2.30",
"gatsby-plugin-feed": "^2.3.19",
"gatsby-plugin-google-analytics": "^2.1.23",
"gatsby-plugin-lodash": "^3.1.13",
"gatsby-plugin-manifest": "^2.2.26",
"gatsby-plugin-netlify-cms": "^4.1.26",
"gatsby-plugin-offline": "^3.0.17",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-sass": "^2.1.20",
"gatsby-plugin-sharp": "^2.2.36",
"gatsby-plugin-sitemap": "^2.2.19",
"gatsby-plugin-typography": "^2.3.15",
"gatsby-remark-autolink-headers": "^2.1.16",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-copy-linked-files": "^2.1.28",
"gatsby-remark-emoji": "0.0.3",
"gatsby-remark-images": "^3.1.28",
"gatsby-remark-prismjs": "^3.3.20",
"gatsby-remark-responsive-iframe": "^2.2.25",
"gatsby-remark-smartypants": "^2.1.14",
"gatsby-source-filesystem": "^2.1.35",
"gatsby-transformer-remark": "^2.6.32",
"gatsby-transformer-sharp": "^2.3.2",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.15",
"netlify-cms-app": "^2.9.7",
"node-sass": "^4.13.0",
"prismjs": "^1.17.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-switch": "^5.0.1",
"react-typography": "^0.16.13",
"smooth-scroll": "^16.1.0",
"typeface-catamaran": "0.0.72",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typeface-noto-sans-kr": "0.0.63",
"typography": "^0.16.17",
"typography-theme-github": "^0.16.18"
},
"devDependencies": {
"date-fns": "^2.6.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"fs-extra": "^8.1.0",
"gray-matter": "^4.0.2",
"inquirer": "^7.0.0",
"lighthousebot": "git+https://github.com/GoogleChromeLabs/lighthousebot.git",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"recursive-readdir": "^2.2.2",
"signale": "^1.3.0",
"webpack": "^4.41.2"
},
"homepage": "https://github.com/adhrinae/rinae.dev",
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/adhrinae/rinae.dev.git"
},
"scripts": {
"post": "node ./cli/create-new-post.js",
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"lh": "lighthousebot",
"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"
}
}