-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.27 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
{
"name": "task11.github.io",
"private": true,
"description": "task11's blog by Gastby",
"version": "1.0.0",
"author": "Jeong Hyeon Kim <6539305@gmail.com>",
"bugs": {
"url": "https://github.com/task11/task11.github.io/issues"
},
"homepage": "https://task11.github.io",
"scripts": {
"deploy": "gatsby build && gh-pages -d public -b deploy",
"build": "gatsby build",
"develop": "gatsby develop",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y npm run develop",
"build:cypress": "cross-env CYPRESS_SUPPORT=y npm run build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"@lekoarts/gatsby-theme-minimal-blog": "^6.0.5",
"gatsby": "^5.5.0",
"gatsby-plugin-feed": "^5.5.0",
"gatsby-plugin-manifest": "^5.5.0",
"gatsby-plugin-sitemap": "^6.5.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.30",
"gatsby-remark-copy-relative-linked-files": "^1.5.0",
"gatsby-transformer-remark": "^6.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"cross-env": "^7.0.3",
"gh-pages": "^5.0.0",
"typescript": "^4.9.4"
}
}