-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "ppx-gatsby-blog",
"version": "1.0.0",
"private": true,
"description": "ppx-gatsby-blog",
"author": "xichen1",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"@fisch0920/use-dark-mode": "^2.4.0",
"@mdx-js/react": "^2.3.0",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"gatsby": "^5.11.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-algolia": "^1.0.3",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-mdx": "^5.11.0",
"gatsby-plugin-pnpm": "^1.2.10",
"gatsby-plugin-postcss": "^6.11.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-plugin-sitemap": "^6.11.0",
"gatsby-plugin-use-dark-mode": "^2.0.1",
"gatsby-remark-copy-linked-files": "^6.11.0",
"gatsby-remark-images": "^7.11.0",
"gatsby-remark-prismjs": "^7.11.0",
"gatsby-remark-responsive-iframe": "^6.11.1",
"gatsby-remark-smartypants": "^6.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-transformer-remark": "^6.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"gray-matter": "^4.0.3",
"postcss": "^8.4.27",
"prism-react-renderer": "^2.0.6",
"prismjs": "^1.29.0",
"qweather-icons": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-flowtype": "8.0.3",
"gh-pages": "^5.0.0",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}