-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.83 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
91
92
93
94
95
96
{
"name": "blog",
"description": "Persistent Perseverance, a personal blog by Fathurahman Ma'ruf Hudoarma, about life, code, and random $h1t",
"version": "1.9.119",
"author": "Fathurahman Ma'ruf Hudoarma <fathurmh@gmail.com>",
"dependencies": {
"disqus-react": "^1.0.5",
"gatsby": "^1.9.130",
"gatsby-link": "^1.6.31",
"gatsby-plugin-catch-links": "^1.0.14",
"gatsby-plugin-feed": "^1.3.15",
"gatsby-plugin-google-analytics": "^1.0.14",
"gatsby-plugin-manifest": "^1.0.10",
"gatsby-plugin-netlify": "^1.0.11",
"gatsby-plugin-nprogress": "^1.0.9",
"gatsby-plugin-offline": "^1.0.12",
"gatsby-plugin-preact": "^1.0.14",
"gatsby-plugin-react-helmet": "^2.0.3",
"gatsby-plugin-react-next": "^1.0.6",
"gatsby-plugin-sass": "^1.0.15",
"gatsby-plugin-sharp": "^1.6.23",
"gatsby-plugin-sitemap": "^1.2.23",
"gatsby-plugin-twitter": "^1.0.14",
"gatsby-remark-copy-linked-files": "^1.5.23",
"gatsby-remark-images": "^1.5.34",
"gatsby-remark-prismjs": "^1.2.11",
"gatsby-remark-responsive-iframe": "^1.4.16",
"gatsby-remark-smartypants": "^1.4.10",
"gatsby-source-filesystem": "^1.5.10",
"gatsby-transformer-remark": "^1.7.24",
"gatsby-transformer-sharp": "^1.6.16",
"lodash": "^4.17.4",
"react-helmet": "^5.2.0",
"react-lazyload": "^2.3.0"
},
"devDependencies": {
"animate.css": "^3.5.2",
"babel-eslint": "^8.0.3",
"bootstrap": "^4.0.0",
"devicon-2.2": "^2.2.0",
"emergence.js": "^1.1.2",
"eslint": "^4.13.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"font-awesome": "^4.7.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"normalize.css": "^7.0.0",
"prettier": "^1.9.1",
"textlint": "^10.1.1",
"textlint-rule-preset-ja-spacing": "^2.0.1",
"textlint-rule-preset-japanese": "^4.0.0"
},
"keywords": [
"gatsby",
"gatstrap",
"starter"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"git add"
],
"*.md": [
"npm run lint:textfix",
"git add"
]
},
"main": "n/a",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.+(js|jsx|json|css|scss)\"",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"lint:text": "textlint src/pages/**/index.md",
"lint:textfix": "textlint --fix src/pages/**/index.md",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
}
}