-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.82 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "blog",
"description": "Kun's Blog",
"version": "1.0.0",
"author": "Kun Zhang <[email protected]>",
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-brands-svg-icons": "^5.3.1",
"@fortawesome/free-regular-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.3",
"@mui/styled-engine": "^5.8.7",
"axios": "^0.21.0",
"babel-loader": "^8.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-regenerator": "^6.26.0",
"classnames": "^2.3.1",
"dayjs": "^1.7.5",
"dotenv": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"gatsby": "^2.2.1",
"gatsby-link": "^2.0.16",
"gatsby-paginate": "^1.0.17",
"gatsby-plugin-catch-links": "^2.0.13",
"gatsby-plugin-feed": "^2.0.15",
"gatsby-plugin-layout": "^1.0.13",
"gatsby-plugin-manifest": "^2.0.24",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-nprogress": "^2.0.10",
"gatsby-plugin-offline": "^3.5.0",
"gatsby-plugin-react-helmet": "^3.0.10",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-plugin-sentry": "^1.0.0",
"gatsby-plugin-sitemap": "^2.0.10",
"gatsby-plugin-use-dark-mode": "^1.5.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.3",
"gatsby-remark-autolink-headers": "^2.0.16",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-prismjs": "^3.2.6",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-source-filesystem": "^2.0.27",
"gatsby-transformer-remark": "^2.3.7",
"gitalk": "^1.5.3",
"han-css": "^3.3.0",
"highlight.js": "^10.4.1",
"lozad": "^1.6.0",
"md5": "^2.2.1",
"node-sass": "^4.9.3",
"prismjs": "^1.15.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-ga": "^2.5.3",
"react-helmet": "^5.2.0",
"react-transition-group": "^2.5.2",
"rimraf": "^2.6.2",
"smooth-scroll": "^16.0.0",
"use-dark-mode": "^2.3.1",
"webpack": "^4.19.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"scripts": {
"start": "npm run develop",
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"develop:remote": "gatsby develop -p 8080 -H 0.0.0.0",
"deploy": "npm run build && gh-pages -d public",
"format": "eslint --fix --ignore-path .gitignore .",
"format-style": "stylelint src/**/*.scss --syntax=scss",
"test": "echo \"Error: no test specified\" && exit 1",
"functions": "netlify-lambda serve functions",
"reset": "rimraf pubilc/ .cache/",
"commit": "npx git-cz",
"revert": "node ./scripts/revertConfig.js"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@types/node": "^18.7.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.0",
"husky": "^1.0.0-rc.14",
"lint-staged": "^8.0.4",
"prettier": "^1.7.4",
"stylelint": "^9.5.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.4.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"linters": {
"**/*.js": [
"eslint --fix",
"git add"
],
"**/*.css": "stylelint",
"**/*.scss": "stylelint --syntax=scss"
},
"ignore": [
"**/dist/*.min.js"
]
}
}