-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 KB
/
package.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "gatsby-blog",
"private": true,
"description": "shin4488's blog written by Gatsby and Markdown",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"bootstrap": "^5.2.0",
"dotenv": "^16.0.1",
"gatsby": "^4.20.0",
"gatsby-plugin-feed": "^4.20.0",
"gatsby-plugin-google-gtag": "^4.21.0",
"gatsby-plugin-graphql-codegen": "^3.1.1",
"gatsby-plugin-image": "^2.20.0",
"gatsby-plugin-manifest": "^4.20.0",
"gatsby-plugin-sass": "^5.21.0",
"gatsby-plugin-sharp": "^4.20.0",
"gatsby-plugin-typegen": "^3.0.0",
"gatsby-remark-copy-linked-files": "^5.20.0",
"gatsby-remark-images": "^6.20.0",
"gatsby-remark-prismjs": "^6.20.0",
"gatsby-remark-responsive-iframe": "^5.20.0",
"gatsby-remark-smartypants": "^5.20.0",
"gatsby-source-filesystem": "^4.20.0",
"gatsby-transformer-remark": "^5.20.0",
"gatsby-transformer-sharp": "^4.20.0",
"prismjs": "^1.28.0",
"react": "^18.1.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.1.0",
"react-icons": "^4.4.0",
"sass": "^1.54.5",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.11.6",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "0BSD",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"gatsby": "gatsby",
"build": "gatsby build --prefix-paths",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"generate": "graphql-codegen --config codegen.yml",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
}
}