-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.25 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
{
"private": true,
"name": "adrw.xyz",
"scripts": {
"build": "yarn run lint && gatsby build",
"develop": "yarn run lint && gatsby develop",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y yarn develop",
"build:cypress": "cross-env CYPRESS_SUPPORT=y yarn build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "prettier --write --config package.json \"./{content,pages,src}/**/*.{md,mdx,css,sass,less,json,js,jsx,ts,tsx}\"",
"page:pre": "git remote add page https://adrw.xyz/_git/page",
"page:publish": "git checkout gh-pages && git pull && echo 'Publishing Start...' && git push page gh-pages -f && echo 'Publishing Done!' && git checkout master"
},
"dependencies": {
"@lekoarts/gatsby-theme-minimal-blog": "6.2.4",
"@mkitio/gatsby-theme-password-protect": "2.1.2",
"gatsby": "5.14.1",
"gatsby-plugin-google-gtag": "5.14.0",
"gatsby-plugin-manifest": "5.14.0",
"gatsby-plugin-offline": "6.14.0",
"gatsby-plugin-sitemap": "6.14.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@misk/prettier": "0.6.3",
"cross-env": "7.0.3",
"gatsby-plugin-webpack-bundle-analyser-v2": "1.1.32"
},
"prettier": "@misk/prettier"
}