-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.11 KB
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
{
"name": "gear-dev",
"description": "Jon Gear's personal website and blog",
"version": "4.0.0",
"author": "Jon Gear <jon@gear.dev> (https://gear.dev)",
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop -o",
"develop": "gatsby develop",
"start": "npm run dev",
"serve": "gatsby serve",
"lint": "eslint . --ext .js,.jsx --ignore-path .gitignore",
"lint:fix": "eslint . --ext .js,.jsx --ignore-path .gitignore --fix"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"babel-plugin-styled-components": "^2.1.4",
"gatsby": "^5.16.1",
"gatsby-plugin-catch-links": "^5.16.0",
"gatsby-plugin-google-gtag": "^5.16.0",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-lodash": "^6.16.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-plugin-mdx": "^5.16.0",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-offline": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-plugin-sitemap": "^6.16.0",
"gatsby-plugin-styled-components": "^6.16.0",
"gatsby-plugin-twitter": "^5.16.0",
"gatsby-remark-autolink-headers": "^6.16.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.16.0",
"gatsby-source-filesystem": "^5.16.0",
"gatsby-transformer-sharp": "^5.16.0",
"lodash": "^4.18.1",
"polished": "^4.3.1",
"prism-react-renderer": "^2.4.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-live": "^4.1.8",
"styled-components": "^6.4.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.4"
},
"overrides": {
"qs": "^6.15.3"
}
}