-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "gatsby-starter-rocketdocs",
"private": true,
"version": "1.0.0",
"description": "Out of the box Gatsby Starter for creating documentation websites easily and quickly. With support for MDX, code highlight, Analytics, SEO and more",
"author": "João Pedro Schmitz <hey@joaopedro.dev> (@jpedroschmitz)",
"license": "MIT",
"starter-name": "gatsby-starter-rocketdocs",
"dependencies": {
"@rocketseat/gatsby-theme-docs": "^3.2.0",
"gatsby": "^4.2.0",
"gatsby-plugin-canonical-urls": "^4.2.0",
"gatsby-plugin-google-analytics": "^4.2.0",
"gatsby-plugin-manifest": "^4.2.0",
"gatsby-plugin-offline": "^5.2.0",
"gatsby-plugin-remove-trailing-slashes": "^4.2.0",
"gatsby-plugin-sitemap": "^5.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"gh-pages": "^5.0.0"
},
"keywords": [
"gatsby",
"gatsby-starter"
],
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}