This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
90 lines (90 loc) · 2.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "gatsby-starter-casper",
"description": "GatsbyJS starter that themed with the Casper theme from Ghost.",
"version": "2.0.0",
"author": "Hays Clark <[email protected]>",
"dependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.3.4",
"classnames": "^2.2.6",
"gatsby": "^2.0.20",
"gatsby-pagination": "^1.2.0",
"gatsby-plugin-catch-links": "^2.0.4",
"gatsby-plugin-feed": "^2.0.8",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-nprogress": "^2.0.5",
"gatsby-plugin-offline": "^2.0.6",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-plugin-twitter": "^2.0.6",
"gatsby-remark-autolink-headers": "^2.0.6",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-prismjs": "^3.0.1",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-source-filesystem": "^2.0.3",
"gatsby-transformer-json": "^2.1.4",
"gatsby-transformer-remark": "^2.1.7",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"moment": "^2.22.2",
"prismjs": "^1.15.0",
"react": "^16.5.2",
"react-disqus-comments": "^1.2.0",
"react-dom": "^16.5.2",
"react-gravatar": "^2.6.3",
"react-helmet": "^5.1.3",
"react-scroll": "^1.7.10",
"react-share": "^1.15.1",
"react-social-icons": "^2.7.0",
"react-twitter-widgets": "^1.4.0"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"prettier": "^1.14.3",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.2",
"standard-version": "^4.4.0",
"stylefmt": "^6.0.2",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"write-good": "^0.13.1"
},
"keywords": [
"gatsby",
"blog",
"casper",
"starter"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf .cache && rm -rf public",
"lint": "npm run lint:js && npm run lint:css && npm run lint:md",
"lint:js": "eslint --ext .js,.jsx --ignore-pattern public --ignore-pattern static .",
"lint:css": "stylelint --fix 'src/**/*.css'",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"release": "standard-version -a"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}