-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "mattcacho-portfolio",
"version": "1.0.0",
"private": true,
"description": "Personal Website",
"author": "Matthew Cacho",
"repository": {
"type": "git",
"url": "https://github.com/macho-catt/mattcacho-portfolio"
},
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public",
"lint": "eslint --fix './src/**/*.{js,jsx}'",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"dayjs": "^1.10.7",
"gatsby": "^4.6.1",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-image": "^2.7.0",
"gatsby-plugin-mdx": "^3.7.0",
"gatsby-plugin-react-helmet": "^5.7.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.7.0",
"gatsby-source-filesystem": "^4.7.0",
"gatsby-transformer-sharp": "^4.7.0",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gatsby-plugin-postcss": "^5.6.0",
"gh-pages": "^6.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18"
},
"lint-staged": {
"*.{js,jsx}": "npm run lint",
"*.{js,jsx,json,css,md,mdx}": "npm run prettier"
}
}