-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.23 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
{
"name": "mikeup.church",
"private": true,
"description": "A personal website for Mike Upchurch.",
"version": "0.1.0",
"author": "mupchrch <[email protected]>",
"bugs": {
"url": "https://github.com/mupchrch/mikeup/issues"
},
"homepage": "https://www.mikeup.church/",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/mupchrch/mikeup.git"
},
"scripts": {
"build": "gatsby build",
"deploy": "npm run build && echo www.mikeup.church > ./public/CNAME && gh-pages -d public -b master",
"dev": "gatsby develop",
"start": "npm run build && gatsby serve",
"lint": "npx eslint . --ignore-path .gitignore --ext js,jsx",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"gatsby": "^5.9.0",
"gatsby-plugin-feed": "^5.9.0",
"gatsby-plugin-image": "^3.9.0",
"gatsby-plugin-manifest": "^5.9.0",
"gatsby-plugin-react-helmet": "^6.9.0",
"gatsby-plugin-sass": "^6.9.0",
"gatsby-plugin-sharp": "^5.9.0",
"gatsby-plugin-sitemap": "^6.9.0",
"gatsby-plugin-typography": "^5.9.0",
"gatsby-remark-autolink-headers": "^6.10.0",
"gatsby-remark-copy-linked-files": "^6.9.0",
"gatsby-remark-embedded-codesandbox": "^1.2.0",
"gatsby-remark-images": "^7.9.0",
"gatsby-remark-prismjs": "^7.9.0",
"gatsby-remark-responsive-iframe": "^6.9.0",
"gatsby-remark-smartypants": "^6.9.0",
"gatsby-source-filesystem": "^5.9.0",
"gatsby-transformer-remark": "^6.9.0",
"gatsby-transformer-sharp": "^5.9.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-transition-group": "^4.4.5",
"typography": "^0.16.19",
"typography-theme-github": "^0.16.19"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"node-sass": "^8.0.0",
"prettier": "^2.8.8"
}
}