-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.97 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-sfiction",
"description": "A collection of speculative fiction stories",
"version": "1.0.0",
"author": "Damir Vazgird <[email protected]>",
"dependencies": {
"babel-plugin-lodash": "^3.2.11",
"gatsby": "^1.3.2",
"gatsby-link": "^1.0.9",
"gatsby-plugin-catch-links": "^1.0.1",
"gatsby-plugin-feed": "^1.0.9",
"gatsby-plugin-google-analytics": "^1.0.1",
"gatsby-plugin-manifest": "^1.0.1",
"gatsby-plugin-nprogress": "^1.0.1",
"gatsby-plugin-offline": "^1.0.1",
"gatsby-plugin-react-helmet": "^1.0.1",
"gatsby-plugin-sharp": "^1.0.1",
"gatsby-plugin-sitemap": "^1.0.1",
"gatsby-plugin-twitter": "^1.0.5",
"gatsby-remark-autolink-headers": "^1.0.1",
"gatsby-remark-copy-linked-files": "^1.0.1",
"gatsby-remark-images": "^1.1.0",
"gatsby-remark-prismjs": "^1.0.1",
"gatsby-remark-responsive-iframe": "^1.0.1",
"gatsby-source-filesystem": "^1.0.1",
"gatsby-transformer-remark": "^1.1.0",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"react": "^15.6.1",
"react-disqus-comments": "^1.0.3",
"react-dom": "^15.6.1",
"react-helmet": "^5.1.3",
"react-share": "^1.15.0",
"react-twitter-widgets": "^1.4.0",
"react-typography": "^0.15.10",
"typography": "^0.15.12"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"gh-pages": "^1.0.0",
"stylefmt": "^6.0.0",
"stylelint": "^7.13.0",
"stylelint-config-standard": "^16.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"serve": "gatsby develop",
"build": "gatsby build",
"build-pl": "gatsby build --prefix-paths",
"clean": "rm -rf public",
"lint": "eslint --ext .js,.jsx --ignore-pattern public,static .",
"gh-deploy": "npm run clean && npm run build-pl && gh-pages -d public"
}
}