-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "gatsby-blog-plus",
"private": true,
"description": "A developer blog and portfolio made with Gatsby",
"author": "Ying Feng",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "gatsby build",
"postbuild": "rm -rf docs/ && cp -r public/ docs/",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"swiper": "^6.5.0"
},
"devDependencies": {
"@fontsource/exo-2": "^4.2.2",
"@fontsource/noto-sans-jp": "^4.2.2",
"@fontsource/noto-sans-sc": "^4.2.2",
"@fontsource/poiret-one": "^4.2.2",
"@fontsource/roboto": "^4.2.2",
"@fontsource/roboto-mono": "^4.2.2",
"@fontsource/source-sans-pro": "^4.2.2",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-google-analytics": "^3.4.0",
"gatsby-plugin-postcss": "^4.3.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-remark-audio": "^1.0.2",
"gatsby-remark-vscode": "^3.2.1",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-remark": "^3.2.0",
"postcss": "^8.2.12",
"postcss-preset-env": "^6.7.0",
"prettier": "2.2.1",
"react-helmet": "^6.1.0"
},
"browserslist": [
">1%",
"not dead"
]
}