-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.27 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
109
110
{
"name": "gatsby-site-search",
"private": true,
"description": "Fast JS Search on Gatsby: Roll Your Own Site Search",
"version": "0.0.2",
"license": "BSD-3-Clause",
"keywords": [
"gatsby",
"graphql",
"netlify",
"static",
"blog",
"minimal",
"react",
"search",
"starter",
"mdx"
],
"scripts": {
"build": "gatsby build",
"cypress:open": "cypress open",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:js": "eslint --cache --ext .js,.jsx .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"prettier:check": "prettier --config .prettierrc --check \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@fontsource/lato": "^4.5.0",
"@fontsource/lora": "^4.5.0",
"@fontsource/source-sans-pro": "^4.5.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"crypto-js": "^4.0.0",
"dayjs": "^1.10.6",
"domhandler": "^4.2.0",
"dotenv": "^10.0.0",
"feather-icons-react": "^0.4.3",
"gatsby": "^3.9.1",
"gatsby-plugin-csp": "^1.1.3",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-image": "^1.9.0",
"gatsby-plugin-manifest": "^3.9.0",
"gatsby-plugin-mdx": "^2.9.0",
"gatsby-plugin-netlify": "^3.9.0",
"gatsby-plugin-offline": "^4.9.0",
"gatsby-plugin-preact": "^5.9.0",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-sass": "^4.9.0",
"gatsby-plugin-sharp": "^3.9.0",
"gatsby-plugin-sitemap": "^4.5.0",
"gatsby-remark-images": "^5.6.0",
"gatsby-source-filesystem": "^3.9.0",
"gatsby-transformer-sharp": "^3.9.0",
"htmlparser2": "^6.1.0",
"js-search": "^2.0.0",
"preact": "^10.5.14",
"preact-render-to-string": "^5.1.19",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"remark": "^13.0.0",
"replace-in-file": "^6.2.0",
"sass": "^1.35.2",
"stemmer": "^2.0.0",
"strip-markdown": "^4.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/cypress": "^7.0.6",
"autoprefixer": "^10.3.1",
"browserslist": "^4.16.6",
"cypress": "^7.7.0",
"cypress-axe": "^0.12.2",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.20.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/gatsby-starter-climate"
},
"bugs": {
"url": "https://github.com/rodneylab/gatsby-starter-climate/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run prettier:check"
}
}
}