-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"name": "gatsby-react-app",
"version": "1.0.0",
"private": true,
"description": "gatsby-react-app",
"author": "xgqfrms",
"keywords": [
"gatsby",
"react",
"SSG"
],
"scripts": {
"copy": "cp ./README.md ./static/",
"deploy": "npm run copy && gatsby build",
"deploy-gh-pages": "npm run copy && gatsby build && gh-pages -d public master",
"deploy-prefix": "gatsby build --prefix-paths && gh-pages -d public master",
"app": "gatsby build && gh-pages -d public main",
"dev": "gatsby telemetry --disable && gatsby develop",
"dev-env": "GATSBY_TELEMETRY_DISABLED=1 && gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/mdx": "v1",
"@mdx-js/react": "v1",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.19.2",
"gatsby-plugin-image": "^2.19.0",
"gatsby-plugin-manifest": "^4.19.0",
"gatsby-plugin-mdx": "^3.19.0",
"gatsby-plugin-react-helmet": "^5.19.0",
"gatsby-plugin-sharp": "^4.19.0",
"gatsby-plugin-sitemap": "^5.19.0",
"gatsby-plugin-styled-components": "^5.19.0",
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-remark": "5.25.0",
"gatsby-transformer-sharp": "^4.19.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.5"
},
"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"
}
}