-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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
{
"name": "blog",
"version": "2.0.0",
"description": "Personal site",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "yarn run clean && gatsby build --prefix-paths && gh-pages --add --dist public",
"format": "prettier --write **/*.{js,jsx,ts,tsx,md,mdx}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodew/blog.git"
},
"author": "Qiao Wang <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nodew/blog/issues"
},
"homepage": "https://github.com/nodew/blog#readme",
"dependencies": {
"@mdx-js/mdx": "2.2.1",
"@mdx-js/react": "2.2.1",
"@tailwindcss/typography": "0.5.9",
"autoprefixer": "10.4.13",
"dayjs": "1.11.7",
"gatsby": "5.7.0",
"gatsby-plugin-clarity": "^1.0.1",
"gatsby-plugin-feed": "5.7.0",
"gatsby-plugin-google-gtag": "^5.7.0",
"gatsby-plugin-image": "3.5.0",
"gatsby-plugin-manifest": "5.7.0",
"gatsby-plugin-mdx": "5.7.0",
"gatsby-plugin-offline": "6.5.0",
"gatsby-plugin-postcss": "6.5.0",
"gatsby-plugin-react-helmet": "6.5.0",
"gatsby-plugin-sharp": "5.7.0",
"gatsby-plugin-typegen": "3.1.0",
"gatsby-remark-copy-linked-files": "6.5.0",
"gatsby-remark-images": "7.5.0",
"gatsby-remark-prismjs": "7.5.0",
"gatsby-remark-responsive-iframe": "6.5.0",
"gatsby-remark-smartypants": "6.5.0",
"gatsby-source-filesystem": "5.7.0",
"gatsby-transformer-sharp": "5.7.0",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"postcss": "8.4.21",
"prettier": "2.8.3",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"reading-time": "^1.5.0",
"tailwindcss": "3.2.4"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-helmet": "6.1.5",
"gh-pages": "5.0.0",
"typescript": "4.9.5"
}
}