-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.56 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
{
"name": "yaobin.me",
"description": "https://www.yaobin.me",
"version": "1.0.0",
"author": "Yaobin <[email protected]>",
"bugs": {
"url": "https://github.com/alvinthen/yaobin.me/issues"
},
"dependencies": {
"@raae/gatsby-remark-oembed": "^0.1.1",
"@reach/router": "^1.3.4",
"gatsby": "^3.7.2",
"gatsby-plugin-catch-links": "^3.7.1",
"gatsby-plugin-disqus": "^1.2.2",
"gatsby-plugin-feed": "^3.7.1",
"gatsby-plugin-google-analytics": "^3.7.1",
"gatsby-plugin-offline": "^4.7.1",
"gatsby-plugin-react-helmet": "^4.7.1",
"gatsby-plugin-sass": "^4.7.1",
"gatsby-plugin-sharp": "^3.7.1",
"gatsby-plugin-sitemap": "^4.3.1",
"gatsby-plugin-typography": "^3.7.1",
"gatsby-remark-copy-linked-files": "^4.4.1",
"gatsby-remark-embed-snippet": "^6.4.1",
"gatsby-remark-embed-youtube": "^0.0.7",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^5.4.1",
"gatsby-remark-katex": "^5.4.1",
"gatsby-remark-prismjs": "^5.4.1",
"gatsby-remark-responsive-iframe": "^4.4.1",
"gatsby-remark-smartypants": "^4.4.1",
"gatsby-source-filesystem": "^3.7.1",
"gatsby-transformer-remark": "^4.4.1",
"gatsby-transformer-sharp": "^3.7.1",
"katex": "^0.13.11",
"lodash": "^4.17.21",
"node-sass": "^6.0.0",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-responsive-grid": "^0.3.4",
"react-typography": "^0.16.20",
"typography": "^0.16.21",
"urlize": "^0.2.1",
"webpack": "^5.39.1"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.2.2",
"prettier": "^2.3.1"
},
"homepage": "https://github.com/alvinthen/yaobin.me",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/alvinthen/yaobin.me.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",
"build": "gatsby build",
"serve": "gatsby serve",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"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"
}
}