-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "yuhodots.github.io",
"private": true,
"description": "Yuho Jeong's blog",
"version": "0.1.0",
"author": "yuho <yuho8437@unist.ac.kr>",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.0",
"gatsby": "^5.13.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-disqus": "^1.2.6",
"gatsby-plugin-feed": "^5.13.0",
"gatsby-plugin-google-gtag": "^5.13.0",
"gatsby-plugin-image": "^3.13.0",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-sass": "^6.13.0",
"gatsby-plugin-sharp": "^5.13.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gatsby-remark-autolink-headers": "^6.13.0",
"gatsby-remark-images": "^7.13.0",
"gatsby-remark-katex": "^7.13.0",
"gatsby-remark-prismjs": "^7.13.0",
"gatsby-source-filesystem": "^5.13.0",
"gatsby-transformer-remark": "^6.13.0",
"gatsby-transformer-sharp": "^5.13.0",
"katex": "^0.16.9",
"mermaid": "^11.13.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^5.0.0",
"sass": "^1.69.0"
},
"devDependencies": {
"gh-pages": "^6.1.0",
"prettier": "^3.2.0"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "node_modules/.bin/eslint *.js src/**/*.js --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\" && npm run lint",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsbyjs.dev/unit-testing\" && exit 1",
"deploy": "npm run clean && gatsby build && cd public && rm *.map && cd .. && gh-pages -b master -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/yuhodots/yuhodots.github.io"
}
}