-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1010 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1010 Bytes
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": "pythonpizza",
"private": true,
"description": "",
"version": "1.0.0",
"author": "Python Pizza",
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.15.34",
"gatsby-image": "^2.2.23",
"gatsby-plugin-manifest": "^2.2.20",
"gatsby-plugin-offline": "^3.0.13",
"gatsby-plugin-postcss": "^2.1.10",
"gatsby-plugin-react-helmet": "^3.1.11",
"gatsby-plugin-sharp": "^2.2.27",
"gatsby-source-filesystem": "^2.1.28",
"gatsby-transformer-sharp": "^2.2.21",
"gatsby-transformer-yaml": "^2.2.15",
"postcss-custom-media": "^7.0.8",
"postcss-nested": "^4.1.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve"
}
}