-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·78 lines (78 loc) · 2.47 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
{
"name": "gatsby-theme-blog-ghost-casper",
"description": "Ghost theme for Gatsby",
"version": "0.0.31",
"author": "Kumar D <[email protected]>",
"bugs": {
"url": "https://github.com/kutty-kumar/gatsby-theme-ghost/issues"
},
"dependencies": {
"disqus-react": "^1.1.5",
"gatsby": "^2.32.13",
"gatsby-image": "^2.11.0",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-page-creator": "^2.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-typography": "^2.12.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.1",
"gatsby-transformer-yaml": "^2.11.0",
"lodash": "^4.17.11",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"homepage": "https://github.com/kutty-kumar/gatsby-theme-ghost#readme",
"keywords": [
"gatsby",
"gatsby-theme",
"gatsby-plugin",
"ghost",
"casper"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,md}": [
"npm run format --",
"git add"
]
},
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/kutty-kumar/gatsby-theme-ghost.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 --write 'src/**/*.js' 'src/**/*.md'",
"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",
"update:packages": "rm -rf node_modules && npm update --save-dev && npm update --save"
}
}