-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"name": "keithrfung.dev",
"version": "1.0.0",
"private": true,
"description": "Personal portfolio site for Keith Fung and keithrfung.dev",
"author": "Keith Fung",
"keywords": [
"gatsby"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"deploy": "gatsby build && gh-pages -d public -b main"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@mdx-js/react": "^2.2.1",
"framer-motion": "^8.5.0",
"gatsby": "^5.4.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^5.4.0",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-image": "^3.4.0",
"gatsby-plugin-manifest": "^5.4.0",
"gatsby-plugin-mdx": "^5.4.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.4.0",
"gatsby-plugin-sitemap": "^6.4.0",
"gatsby-plugin-theme-ui": "^0.15.4",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-transformer-sharp": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"theme-ui": "^0.15.4"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"gh-pages": "^5.0.0",
"typescript": "^4.9.4"
},
"overrides": {
"react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825": {
"react": "^18.2.0"
}
}
}