-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gatsby-contentful-firebase-demo",
"description": "A starter template to build static websites with Gatsby, Contentful, Google Cloud Build and Firebase hosting",
"version": "1.0.0",
"repository": "https://github.com/dcifuen/gatsby-contentful-firebase-demo",
"author": "David Cifuentes <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.10.1",
"chalk": "^2.4.2",
"contentful-import": "^7.5.0",
"gatsby": "^2.9.4",
"gatsby-image": "^2.1.4",
"gatsby-plugin-canonical-urls": "^2.0.13",
"gatsby-plugin-catch-links": "^2.0.15",
"gatsby-plugin-feed": "^2.2.3",
"gatsby-plugin-google-analytics": "^2.0.21",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-nprogress": "^2.0.10",
"gatsby-plugin-offline": "^2.1.3",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-remark-autolink-headers": "^2.0.18",
"gatsby-remark-images-contentful": "^2.0.13",
"gatsby-remark-prismjs": "^3.2.11",
"gatsby-source-contentful": "^2.0.71",
"gatsby-source-filesystem": "^2.0.39",
"gatsby-transformer-remark": "^2.4.0",
"global": "^4.4.0",
"inquirer": "^6.3.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"path": "^0.12.7",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "npm run build && gatsby serve",
"test": "npm run lint:css && npm run lint:js && npm run check-pretty",
"setup": "node ./bin/setup.js",
"lint:js": "eslint --ext .js,.jsx .",
"lint:css": "stylelint 'src/**/*.js'",
"check-pretty": "prettier --list-different {,src/**/}*.{js,jsx,json,css,scss}",
"format": "prettier --write \"src/**/*.js\"",
"clean": "gatsby clean"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-gatsby-standard": "^2.2.0",
"prettier": "^1.18.2",
"stylelint": "10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
}
}