-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.48 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.48 KB
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
{
"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/unliftedq/blog.git"
},
"author": "Qiao Wang <wangqiao11@hotmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/unliftedq/blog/issues"
},
"homepage": "https://github.com/unliftedq/blog#readme",
"dependencies": {
"@mdx-js/mdx": "3.1.1",
"@mdx-js/react": "3.1.1",
"@tailwindcss/typography": "^0.5.19",
"@types/react-helmet-async": "^1.0.3",
"autoprefixer": "10.4.22",
"dayjs": "1.11.19",
"gatsby": "5.15.0",
"gatsby-plugin-clarity": "^1.0.1",
"gatsby-plugin-feed": "5.15.0",
"gatsby-plugin-google-gtag": "^5.15.0",
"gatsby-plugin-image": "3.15.0",
"gatsby-plugin-manifest": "5.15.0",
"gatsby-plugin-mdx": "5.15.0",
"gatsby-plugin-offline": "6.15.0",
"gatsby-plugin-postcss": "6.15.0",
"gatsby-plugin-react-helmet": "6.15.0",
"gatsby-plugin-sharp": "5.15.0",
"gatsby-plugin-typegen": "3.1.0",
"gatsby-remark-copy-linked-files": "6.15.0",
"gatsby-remark-images": "7.15.0",
"gatsby-remark-prismjs": "7.15.0",
"gatsby-remark-responsive-iframe": "6.15.0",
"gatsby-remark-smartypants": "6.15.0",
"gatsby-source-filesystem": "5.15.0",
"gatsby-transformer-sharp": "5.15.0",
"graphql": "^16.12.0",
"lodash": "^4.17.21",
"prismjs": "1.30.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-helmet-async": "^2.0.5",
"reading-time": "^1.5.0",
"sharp": "^0.34.5",
"tailwindcss": "4.1.17"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "22.15.30",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.7",
"@types/react-helmet": "6.1.11",
"gh-pages": "6.3.0",
"postcss": "8.5.6",
"prettier": "3.7.0",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.9.2"
}