-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.29 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
{
"name": "gatsby-ah",
"private": true,
"description": "",
"version": "0.1.0",
"author": "Ash Hitchcock <hello@ashleyhitchcock.co.uk>",
"dependencies": {
"@mdx-js/mdx": "v1",
"@mdx-js/react": "v1",
"gatsby": "^4.11.2",
"gatsby-image": "^3.11.0",
"gatsby-parallel-runner": "^1.3.0",
"gatsby-plugin-catch-links": "^4.11.0",
"gatsby-plugin-gdpr-cookies": "^2.0.8",
"gatsby-plugin-layout": "^3.11.0",
"gatsby-plugin-manifest": "^4.11.1",
"gatsby-plugin-mdx": "^3.11.1",
"gatsby-plugin-netlify": "^4.2.0",
"gatsby-plugin-offline": "^5.11.1",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-prettier-build": "^0.4.4",
"gatsby-plugin-react-helmet": "^5.11.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.11.1",
"gatsby-plugin-styled-components": "^5.11.0",
"gatsby-plugin-typescript": "^4.11.1",
"gatsby-plugin-use-dark-mode": "^1.4.0",
"gatsby-plugin-webfonts": "^2.2.2",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-source-filesystem": "^4.7.0",
"gatsby-source-instagram": "^0.9.0",
"gatsby-transformer-sharp": "^4.11.0",
"grommet": "^2.22.0",
"grommet-icons": "^4.7.0",
"grommet-styles": "^0.2.0",
"netlify-plugin-gatsby-cache": "^0.3.2",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-cookie-consent": "^7.4.1",
"react-dom": "^18.0.0",
"react-emoji-render": "^1.2.4",
"react-helmet": "^6.1.0",
"react-typewriter-hook": "^1.0.1",
"styled-components": "^5.3.5",
"styled-normalize": "^8.0.7",
"typescript": "^4.4.2",
"typewriter-effect": "^2.18.2",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@types/node": "^16.7.13",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-ashhitch": "0.1.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-remark-copy-linked-files": "^5.11.0",
"gatsby-remark-images": "^6.11.1",
"npm-check": "^5.9.2",
"prettier": "^2.3.2",
"slugify": "^1.6.5"
},
"keywords": [],
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/ashhitch/ashleyhitchcock.com"
},
"bugs": {
"url": "https://github.com/ashhitch/ashleyhitchcock.com/issues"
},
"eslintConfig": {
"extends": "eslint-config-ashhitch/typescript.js",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"browserslist": [
">0.5%",
"not dead",
"not op_mini all",
"not ie 11"
]
}