-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "stretch-docs",
"private": true,
"version": "1.0.0",
"author": "Visly Inc. <[email protected]>",
"dependencies": {
"@mdx-js/mdx": "^1.0.0-rc.4",
"@mdx-js/react": "^1.0.0-rc.5",
"gatsby": "^2.3.32",
"gatsby-image": "^2.0.40",
"gatsby-mdx": "^0.6.2",
"gatsby-plugin-manifest": "^2.0.29",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-source-filesystem": "^2.0.32",
"gatsby-transformer-sharp": "^2.1.18",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"prettier": "^1.17.0",
"react-syntax-highlighter": "^10.2.1"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}