-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 2.03 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
{
"name": "magcho's_blog",
"description": "blog of magcho",
"version": "1.0.0",
"author": "magcho <mail@magcho.com>",
"bugs": {
"url": "https://github.com/magcho/blog.magcho.com/issues"
},
"homepage": "https://blog.magcho.com",
"keywords": [
"gatsby",
"magcho"
],
"license": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/magcho/blog.magcho.com.git"
},
"scripts": {
"dev": "gatsby develop",
"clean": "gatsby clean",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"format": "./node_modules/.bin/prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"dev-m": "gatsby develop -H 0.0.0.0 -p 8000",
"build": "gatsby build",
"fix-semi": "./node_modules/.bin/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",
"format-md": "remark *.md -o"
},
"dependencies": {
"gatsby": "^4.23.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-feed": "^4.23.0",
"gatsby-plugin-google-analytics": "^4.23.0",
"gatsby-plugin-manifest": "^4.23.0",
"gatsby-plugin-offline": "^5.23.0",
"gatsby-plugin-sass": "^5.23.0",
"gatsby-plugin-sharp": "^4.23.0",
"gatsby-plugin-sitemap": "^5.23.0",
"gatsby-remark-copy-linked-files": "^5.23.0",
"gatsby-remark-images": "^6.23.0",
"gatsby-remark-prismjs": "^6.23.0",
"gatsby-remark-prismjs-title": "^1.0.0",
"gatsby-remark-responsive-iframe": "^5.23.0",
"gatsby-remark-smartypants": "^5.23.0",
"gatsby-source-filesystem": "^4.23.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.23.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.52.3",
"sharp": "^0.30.6"
},
"devDependencies": {
"prettier": "^2.6.2",
"prettier-plugin-md-nocjsp": "^1.2.0"
}
}