This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.84 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
{
"name": "gatsby-starter-bootstrap",
"description": "GatsbyJS Blog Template for blogging purpose.",
"version": "1.1.1",
"author": "Tuan Duc Design <[email protected]>",
"dependencies": {
"@babel/core": "^7.22.10",
"@popperjs/core": "^2.11.8",
"ansi-regex": "^6.0.1",
"@babel/eslint-parser": "^7.22.10",
"bootstrap": "5.1.3",
"bootstrap-icons": "^1.10.5",
"browserslist": "^4.21.10",
"classnames": "^2.3.2",
"default-passive-events": "^2.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby": "^4.12.1",
"gatsby-codemods": "^3.12.1",
"gatsby-design-tokens": "^4.12.1",
"gatsby-image": "^3.11.0",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-catch-links": "^4.12.1",
"gatsby-plugin-feed": "^4.12.1",
"gatsby-plugin-google-adsense": "^1.1.3",
"gatsby-plugin-google-gtag": "^4.12.1",
"gatsby-plugin-image": "^2.12.1",
"gatsby-plugin-lodash": "^5.12.1",
"gatsby-plugin-manifest": "^4.12.1",
"gatsby-plugin-no-sourcemaps": "^4.12.1",
"gatsby-plugin-nprogress": "^4.12.1",
"gatsby-plugin-offline": "^5.12.1",
"gatsby-plugin-optimize-svgs": "^1.0.5",
"gatsby-plugin-purgecss": "^6.1.2",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sass": "^5.12.1",
"gatsby-plugin-sharp": "^4.12.1",
"gatsby-plugin-typography": "^4.12.1",
"gatsby-remark-autolink-headers": "^5.12.1",
"gatsby-remark-copy-linked-files": "^5.12.1",
"gatsby-remark-embed-video": "^3.2.1",
"gatsby-remark-images": "^6.12.1",
"gatsby-remark-prismjs": "^6.12.1",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-remark-responsive-iframe": "^5.12.1",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-transformer-remark": "^5.12.1",
"gatsby-transformer-sharp": "^4.12.1",
"lodash": "^4.17.21",
"lost": "^8.3.1",
"moment": "^2.29.4",
"node-sass": "^7.0.3",
"postcss-pxtorem": "^6.0.0",
"prismjs": "^1.27.0",
"react": "^18.0.0",
"react-bootstrap": "^2.2.3",
"react-disqus-comments": "^1.4.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-share": "^4.4.1",
"react-typography": "^0.16.23",
"slug": "^5.3.0",
"typescript": "^4.9.5",
"typography": "^0.16.24",
"typography-plugin-code": "^0.16.20",
"url-join": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"cli-glob": "0.1.0",
"eslint": "8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.1",
"gh-pages": "3.2.3",
"postcss": "8.4.27",
"postcss-loader": "6.2.1",
"prettier": "3.0.1",
"remark-cli": "10.0.1",
"remark-preset-lint-recommended": "6.1.3",
"rimraf": "^3.0.2",
"sass": "1.50.1",
"sass-loader": "12.6.0",
"standard-version": "9.3.2",
"stylefmt": "6.0.3",
"stylelint": "14.16.1",
"stylelint-config-standard": "25.0.0",
"webpack": "5.72.0",
"write-good": "1.0.8"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "yarn develop",
"serve": "gatsby serve",
"build": "yarn clean && gatsby build",
"build:pp": " gatsby build --prefix-paths",
"build:gh": "yarn build:pp && gh-pages -d public",
"clean": "rimraf public .cache",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/posts/",
"lint": "yarn lint:js && yarn:md",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"first-release": "standard-version --first-release",
"prerelease": "standard-version"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}