-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.63 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
{
"name": "gatsby-starter-henlo",
"description": "Minimalistic starter for Gatsby v5, optimized for SEO & Performance.",
"version": "1.3.0",
"author": "Wojciech Kałużny <[email protected]>",
"browserslist": [
"defaults"
],
"dependencies": {
"clsx": "^2.1.1",
"decap-cms-app": "^3.6.2",
"gatsby": "^5.14.3",
"gatsby-plugin-brotli": "^2.1.0",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-decap-cms": "^4.0.4",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-postcss": "^6.13.1",
"gatsby-plugin-preload-fonts": "^4.3.1",
"gatsby-plugin-root-import": "^2.0.6",
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-sitemap": "^6.3.1",
"gatsby-plugin-svgr-loader": "^0.1.0",
"gatsby-remark-copy-linked-files": "^6.3.0",
"gatsby-remark-images": "^7.3.1",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-transformer-remark": "^6.3.2",
"gatsby-transformer-sharp": "^5.3.1",
"netlify-cms-widget-id": "^1.0.1",
"netlify-cms-widget-permalink": "^1.0.2",
"parcel-bundler": "^1.9.4",
"path-browserify": "^1.0.1",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.41.3",
"react-markdown": "^8.0.4",
"tailwind-merge": "^3.2.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"dev": "npm run develop",
"develop": "npm run clean && gatsby develop",
"build": "npm run clean && gatsby build",
"cms": "npx decap-server",
"serve": "gatsby serve",
"serve:prod": "npm run clean && gatsby build && gatsby serve",
"build:prod": "netlify build",
"init": "netlify init",
"link": "netlify link",
"clean": "gatsby clean",
"deploy": "npm run clean && netlify build && netlify deploy",
"deploy:prod": "npm run clean && netlify build && netlify deploy --prod",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"preload-fonts": "gatsby-preload-fonts"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.3",
"@tailwindcss/typography": "^0.5.16",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"postcss": "^8.5.3",
"postcss-nested": "^7.0.2",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.3",
"typescript": "^5.8.3"
}
}