-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "gatsby-base-site",
"author": "Name <[email protected]>",
"description": "A stripped down Gatsby site to get started on a new project from scratch",
"license": "MIT",
"private": true,
"version": "0.1.0",
"dependencies": {
"gatsby": "^2.20.26",
"gatsby-cli": "^2.11.12",
"gatsby-image": "^2.3.4",
"gatsby-plugin-google-analytics": "^2.2.4",
"gatsby-plugin-manifest": "^2.3.5",
"gatsby-plugin-offline": "^3.1.4",
"gatsby-plugin-react-helmet": "^3.2.4",
"gatsby-plugin-sass": "^2.2.3",
"gatsby-plugin-sharp": "^2.5.6",
"gatsby-plugin-styled-components": "^3.2.3",
"gatsby-source-filesystem": "^2.2.4",
"gatsby-transformer-sharp": "^2.4.6",
"node-sass": "^4.13.1",
"npm": "^6.14.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.7",
"prettier": "^2.0.4"
},
"engines": {
"node": ">=12.16.0",
"npm": ">=6.14.0"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "gatsby build",
"develop": "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"
},
"repository": {
"type": "git",
"url": "https://github.com/rwinterstein/gatsby-template-site"
}
}