-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"dev": "env-cmd -f .env.development gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"clean": "rm -rf .cache",
"deploy": "npm run clean && gatsby build && gh-pages -d public -b master"
},
"dependencies": {
"@giscus/react": "^2.0.2",
"dotenv": "^10.0.0",
"gatsby": "^4.25.7",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-postcss": "^4.11.0",
"gatsby-plugin-react-helmet": "^4.11.0",
"gatsby-plugin-sass": "^5.11.1",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-remark-copy-linked-files": "^4.8.0",
"gatsby-remark-images": "^5.8.0",
"gatsby-remark-prismjs": "^5.8.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-remark-vscode": "^3.3.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.11.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.31",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sass": "^1.50.0"
},
"devDependencies": {
"env-cmd": "^10.0.1",
"gh-pages": "^5.0.0",
"prettier": "^2.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}