forked from ronnycoding/kevinwolf.me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
68
69
70
71
{
"private": true,
"version": "0.0.0-unversioned",
"name": "@kevinwolf/website",
"description": "Kevin Wolf personal website",
"author": "Kevin Wolf <hi@kevinwolf.me>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --ignore-path .gitignore",
"build": "gatsby build",
"validate": "yarn tsc && yarn lint && yarn build",
"setup": "yarn install && yarn validate",
"start": "gatsby develop",
"serve": "gatsby serve"
},
"dependencies": {
"@emotion/core": "^10.0.21",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"gatsby": "^2.15.34",
"gatsby-image": "^2.2.25",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"theme-ui": "^0.2.44"
},
"devDependencies": {
"@kevinwolf/eslint-config": "^0.2.3",
"@types/react-helmet": "^5.0.11",
"@types/theme-ui": "^0.2.3",
"gatsby-plugin-layout": "^1.1.11",
"gatsby-plugin-manifest": "^2.2.21",
"gatsby-plugin-mdx": "^1.0.50",
"gatsby-plugin-netlify": "^2.1.19",
"gatsby-plugin-page-creator": "^2.1.25",
"gatsby-plugin-react-helmet": "^3.1.11",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.2.29",
"gatsby-plugin-theme-ui": "^0.2.43",
"gatsby-plugin-typescript": "^2.1.12",
"gatsby-plugin-webfonts": "^1.1.0",
"gatsby-source-filesystem": "^2.1.31",
"gatsby-transformer-sharp": "^2.2.21",
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"typescript": "3.5.3"
},
"resolutions": {
"eslint": "6.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"readme.md": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}