-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "my-blog",
"version": "1.0.0",
"private": true,
"description": "my-blog",
"author": "seokwon",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"deploy": "yarn run clean && gatsby build && gh-pages -d public -b deploy",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"gatsby": "^4.19.2",
"gatsby-plugin-emotion": "^7.19.0",
"gatsby-plugin-manifest": "^4.19.0",
"gatsby-plugin-react-helmet": "^5.19.0",
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-remark": "^5.19.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"gh-pages": "^4.0.0",
"typescript": "^4.7.4"
}
}