-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 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
84
85
{
"name": "gatsby-functions-fauna",
"private": true,
"description": "A demo stie to show how the Fauna data API can be used with Gatsby Functions.",
"version": "0.1.0",
"license": "BSD-3-Clause",
"scripts": {
"build": "gatsby build",
"cypress:open": "cypress open",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:scss": "stylelint \"src/**/*.scss\"",
"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",
"akismet-api": "^5.2.1",
"axios": "^0.21.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.6",
"domhandler": "^4.2.0",
"faunadb": "^4.3.0",
"feather-icons-react": "^0.4.3",
"gatsby": "^3.11.0",
"gatsby-node-helpers": "^1.2.1",
"gatsby-plugin-csp": "^1.1.3",
"gatsby-plugin-gatsby-cloud": "^2.11.0",
"gatsby-plugin-image": "^1.11.0",
"gatsby-plugin-mdx": "^2.11.0",
"gatsby-plugin-react-helmet": "^4.11.0",
"gatsby-plugin-sass": "^4.11.0",
"gatsby-plugin-sharp": "^3.11.0",
"gatsby-remark-images": "^5.8.0",
"gatsby-source-filesystem": "^3.11.0",
"gatsby-transformer-sharp": "^3.11.0",
"htmlparser2": "^6.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.12.2",
"replace-in-file": "^6.2.0",
"sass": "^1.37.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/cypress": "^7.0.7",
"autoprefixer": "^10.3.1",
"browserslist": "^4.16.7",
"cypress": "^8.2.0",
"cypress-axe": "^0.13.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"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"
}
}
}