-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "gatsby-blog",
"private": true,
"description": "A personal blog powered by Gatsby",
"version": "1.0.0",
"author": "unique.mo <myx3901051@qq.com>",
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^1.12.0",
"bulma": "^0.9.2",
"gatsby": "^3.7.2",
"gatsby-plugin-feed": "^3.9.0",
"gatsby-plugin-google-analytics": "^3.9.0",
"gatsby-plugin-image": "^1.9.0",
"gatsby-plugin-manifest": "^3.9.0",
"gatsby-plugin-mdx": "^2.9.0",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-sass": "^4.9.0",
"gatsby-plugin-sharp": "^3.9.0",
"gatsby-plugin-styled-components": "^4.9.0",
"gatsby-plugin-typography": "^3.9.0",
"gatsby-remark-autolink-headers": "^4.6.0",
"gatsby-remark-copy-linked-files": "^4.6.0",
"gatsby-remark-images": "^5.6.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-responsive-iframe": "^4.6.0",
"gatsby-remark-smartypants": "^4.6.0",
"gatsby-remark-toc": "^1.2.0",
"gatsby-remark-vscode": "^3.2.1",
"gatsby-source-filesystem": "^3.9.0",
"gatsby-transformer-sharp": "^3.9.0",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-switch": "^6.0.0",
"react-typography": "^0.16.19",
"styled-components": "^5.2.1",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"prettier": "^2.2.1"
},
"homepage": "https://github.com/uniquemo/gatsby-blog#readme",
"keywords": [
"gatsby",
"blog",
"styled-components",
"react",
"markdown"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/uniquemo/gatsby-blog.git"
},
"scripts": {
"develop": "gatsby develop --port 4200",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"release": "./deploy/bash.sh"
}
}