-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.5 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "capsulecat.github.io",
"private": true,
"description": "Capsule Cat Website",
"version": "0.1.0",
"author": "Capsule Cat <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@mdx-js/mdx": "^1.5.7",
"@mdx-js/react": "^1.5.7",
"@pauliescanlon/gatsby-mdx-embed": "0.0.17",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"gatsby": "^2.19.43",
"gatsby-background-image": "^0.10.2",
"gatsby-image": "^2.2.39",
"gatsby-paginate": "^1.1.1",
"gatsby-plugin-copy-files": "^1.0.3",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-feed-mdx": "^1.0.1",
"gatsby-plugin-google-analytics": "^2.1.34",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.39",
"gatsby-plugin-mdx": "^1.0.82",
"gatsby-plugin-offline": "^3.0.32",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.4.12",
"gatsby-plugin-sitemap": "^2.2.30",
"gatsby-plugin-typography": "^2.3.21",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-images": "^3.1.42",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-remark-responsive-iframe": "^2.2.31",
"gatsby-remark-smartypants": "^2.1.20",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-sharp": "^2.3.13",
"husky": "^4.2.3",
"intersection-observer": "^0.7.0",
"prismjs": "^1.19.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.17",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-intl": "^4.1.1",
"react-typography": "^0.16.19",
"sass": "^1.60.0",
"styled-components": "^5.0.1",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"@calm/eslint-plugin-react-intl": "^1.4.1",
"@godaddy/eslint-plugin-react-intl": "^1.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-clarity-hub": "^2.0.2",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.15.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "node ./scripts/deploy",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "npm-run-all -pc lint:**",
"lint:es": "eslint src",
"lint:style": "stylelint \"**/*.scss\"",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
}