-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.64 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "gatsby-starter-morning-dew",
"description": "Starter Morning Dew Blog",
"version": "1.0.0",
"author": "Maxence Poutord <maxence.poutord@gmail.com>",
"bugs": {
"url": "https://github.com/maxpou/gatsby-starter-morning-dew/issues"
},
"dependencies": {
"babel-plugin-styled-components": "^1.8.0",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"core-js": "^2.5.7",
"disqus-react": "^1.0.5",
"gatsby": "^2.0.55",
"gatsby-plugin-feed": "2.0.9",
"gatsby-plugin-google-analytics": "2.0.7",
"gatsby-plugin-manifest": "^2.0.10",
"gatsby-plugin-netlify-cms": "^3.0.8",
"gatsby-plugin-offline": "^2.0.17",
"gatsby-plugin-react-helmet": "3.0.2",
"gatsby-plugin-sharp": "2.0.13",
"gatsby-plugin-styled-components": "^3.0.3",
"gatsby-remark-autolink-headers": "^2.0.11",
"gatsby-remark-copy-linked-files": "2.0.6",
"gatsby-remark-images": "3.0.0",
"gatsby-remark-prismjs": "3.0.3",
"gatsby-remark-responsive-iframe": "2.0.6",
"gatsby-remark-smartypants": "2.0.6",
"gatsby-source-filesystem": "2.0.8",
"gatsby-transformer-remark": "2.1.12",
"gatsby-transformer-sharp": "2.1.8",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"netlify-cms": "^2.2.0",
"particles.js": "^2.0.0",
"popper.js": "^1.14.6",
"prismjs": "^1.15.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-slick": "^0.23.2",
"slick-carousel": "^1.8.1",
"styled-components": "^4.0.2"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.12.0",
"puppeteer": "^1.9.0",
"yaml": "^1.0.0"
},
"homepage": "https://github.com/maxpou/gatsby-starter-morning-dew#readme",
"keywords": [
"gatsby",
"blog",
"starter"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/maxpou/gatsby-starter-morning-dew.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'data/siteConfig.js'",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js",
"generatePostPreviewImages": "node ./scripts/generatePostPreviewImages.js"
}
}