-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.6 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.6 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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "NODE_OPTIONS=\"--openssl-legacy-provider --no-deprecation\" gatsby build",
"prod": "NODE_OPTIONS=\"--openssl-legacy-provider --no-deprecation\" gatsby clean && gatsby build && rm -rf docs && mkdir -p docs && cp -R public/ docs/",
"dev": "NODE_OPTIONS=\"--openssl-legacy-provider --no-deprecation\" gatsby develop -p 2000",
"develop": "NODE_OPTIONS=\"--openssl-legacy-provider --no-deprecation\" gatsby develop -p 2000",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "NODE_OPTIONS=\"--openssl-legacy-provider --no-deprecation\" gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^3.14.6",
"gatsby-plugin-google-gtag": "^3.15.0",
"gatsby-plugin-image": "^1.14.2",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.3",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-remark": "^4.11.0",
"gatsby-transformer-sharp": "^3.14.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}