-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.62 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
{
"name": "loadsmart-engineering-blog",
"private": true,
"description": "Loadsmart's Engineering Blog",
"version": "0.1.0",
"author": "Loadsmart Engineering <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.13.3",
"gatsby": "^3.13.0",
"gatsby-alias-imports": "^1.0.4",
"gatsby-cli": "^2.19.3",
"gatsby-image": "^2.11.0",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^4.8.0",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sharp": "^4.8.0",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-plugin-use-dark-mode": "^1.5.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^4.8.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"styled-components": "^5.3.5",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"dictionary-en": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"prismjs": "^1.20.0",
"textlint": "^11.6.3",
"textlint-rule-alex": "^1.3.1",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "^1.0.0",
"textlint-rule-no-dead-link": "^4.6.2",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-spelling": "^0.2.0",
"textlint-rule-terminology": "^2.1.4"
},
"keywords": [
"front-end developer"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"{,!(.cache|node_modules|public)/**/}*.{js,json}\"",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"textlint": "./node_modules/.bin/textlint README.md content/posts/**/*.md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
],
"*.md": [
"yarn textlint"
]
}
}