-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "blog",
"private": true,
"dependencies": {
"@styled-icons/boxicons-logos": "^10.47.0",
"@styled-icons/feather": "^10.47.0",
"babel-plugin-styled-components": "^2.0.7",
"disqus-react": "^1.1.5",
"gatsby": "^5.5.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-feed": "^5.5.0",
"gatsby-plugin-google-analytics": "^5.5.0",
"gatsby-plugin-manifest": "^5.5.0",
"gatsby-plugin-react-helmet": "^6.5.0",
"gatsby-plugin-sharp": "^5.5.0",
"gatsby-plugin-sitemap": "^6.5.0",
"gatsby-plugin-styled-components": "^6.5.0",
"gatsby-remark-copy-linked-files": "^6.5.0",
"gatsby-remark-images": "^7.5.0",
"gatsby-remark-prismjs": "^7.5.0",
"gatsby-source-filesystem": "^5.5.0",
"gatsby-transformer-remark": "^6.5.0",
"gatsby-transformer-sharp": "^5.5.0",
"gh-pages": "^5.0.0",
"moment": "^2.29.4",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.6",
"styled-icons": "^10.47.0"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3"
},
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"deploy": "gatsby clean && gatsby build && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint . --fix --max-warnings=0",
"postinstall": "husky install",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}