-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.33 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
95
96
97
98
{
"name": "zq-blog",
"description": "张庆 笔记 个人工作 张庆的个人工作笔记 博客 日志 技术 前端",
"version": "2.0.0",
"author": "Zhang Qing <[email protected]>",
"bugs": {
"url": "https://github.com/JennerChen/zq-blog/issues"
},
"dependencies": {
"algoliasearch": "^4.8.5",
"autosize": "^4.0.2",
"babel-plugin-styled-components": "^2.1.4",
"dotenv": "^8.2.0",
"gatsby": "4.x",
"gatsby-plugin-baidu-analytics": "^1.1.16",
"gatsby-plugin-feed": "^4.25.0",
"gatsby-plugin-google-gtag": "^4.25.0",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.25.0",
"gatsby-plugin-typography": "^4.25.0",
"gatsby-remark-autolink-headers": "^5.25.0",
"gatsby-remark-copy-linked-files": "^5.25.0",
"gatsby-remark-images": "^6.25.0",
"gatsby-remark-mermaid": "2.x",
"gatsby-remark-prismjs": "^6.25.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-responsive-iframe": "^5.25.0",
"gatsby-remark-smartypants": "^5.25.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.25.0",
"lodash": "^4.17.20",
"prismjs": "^1.15.0",
"react": "^16.13.1",
"react-content-loader": "^5.0.3",
"react-dom": "^16.13.1",
"react-github-corner": "^2.3.0",
"react-helmet": "^5.2.0",
"react-instantsearch-dom": "^6.9.0",
"react-typography": "^0.16.13",
"styled-components": "^4.1.2",
"styled-media-query": "^2.1.1",
"styled-tools": "^1.7.1",
"typeface-merriweather": "0.0.43",
"typeface-montserrat": "0.0.43",
"typography": "^0.16.17",
"typography-theme-github": "^0.16.18",
"typography-theme-wordpress-2016": "^0.15.10"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.11.1",
"gatsby-cli": "^3.15.0",
"gh-pages": "^1.2.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"puppeteer": "^7.1.0"
},
"homepage": "https://zqblog.beaf.tech",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/JennerChen/zq-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"now-build": "npm run build",
"serve": "gatsby build && gatsby serve",
"precommit": "lint-staged",
"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"
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"puppeteer_download_path": "./node_modules/puppeteer/.local-chromium"
}
}