forked from cachrisman/gatsby-starter-gcn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.09 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
{
"name": "gatsby-starter-gcn",
"description": "A starter template to build amazing static websites with Gatsby, Contentful and Netlify",
"version": "1.2.3",
"repository": "https://github.com/ryanwiemer/gatsby-starter-gcn",
"author": "Ryan Wiemer <[email protected]>",
"dependencies": {
"chalk": "^2.4.1",
"contentful-import": "^7.0.2",
"gatsby": "^1.9.272",
"gatsby-image": "^1.0.54",
"gatsby-link": "^1.6.44",
"gatsby-plugin-canonical-urls": "^1.0.18",
"gatsby-plugin-feed": "^1.3.25",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-manifest": "^1.0.27",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-nprogress": "^1.0.14",
"gatsby-plugin-offline": "^1.0.18",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-sitemap": "^1.2.25",
"gatsby-plugin-styled-components": "^2.0.11",
"gatsby-remark-images-contentful": "^1.0.2",
"gatsby-remark-prismjs": "^2.0.4",
"gatsby-source-contentful": "^1.3.54",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-remark": "^1.7.44",
"inquirer": "^6.0.0",
"lodash": "^4.17.10",
"path": "^0.12.7",
"prismjs": "^1.15.0",
"react-helmet": "^5.2.0",
"styled-components": "^3.3.2",
"whatwg-fetch": "^2.0.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"test": "npm run lint:css && npm run lint:js && npm run check-pretty",
"setup": "node ./bin/setup.js",
"dev": "gatsby develop",
"lint:js": "eslint --ext .js,.jsx .",
"lint:css": "stylelint 'src/**/*.js'",
"check-pretty": "prettier -l {,src/**/}*.{js,jsx,json,css,scss}",
"format": "prettier --write \"src/**/*.js\""
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-gatsby-standard": "^1.2.2",
"prettier": "^1.13.5",
"stylelint": "9.3.0",
"stylelint-config-prettier": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
}
}