-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
102 lines (102 loc) · 3.23 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
{
"name": "cilium.io",
"private": true,
"description": "Cilium.io - Public website",
"version": "0.1.0",
"author": "Cilium",
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write .",
"lint": "npm run lint:js & npm run lint:md",
"lint:fix": "npm run lint:js:fix & npm run lint:md:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^2.3.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.9",
"algoliasearch": "^4.19.1",
"babel-loader": "^9.1.2",
"classnames": "^2.3.2",
"framer-motion": "^10.16.1",
"gatsby": "^5.12.3",
"gatsby-plugin-algolia-search": "^0.5.7",
"gatsby-plugin-canonical-urls": "^5.12.0",
"gatsby-plugin-feed": "^5.12.0",
"gatsby-plugin-hotjar": "^1.1.1",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-mdx": "^5.12.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-sitemap": "^6.12.0",
"gatsby-remark-copy-linked-files": "^6.12.0",
"gatsby-remark-images": "^7.12.0",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-responsive-iframe": "^6.12.0",
"gatsby-remark-video": "^1.2.5",
"prettier-plugin-tailwindcss": "^0.5.3",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-calendly": "^4.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-instantsearch-dom": "^6.34.0",
"react-modal": "^3.16.1",
"react-paginate": "^8.2.0",
"react-share": "^4.4.1",
"react-slick": "^0.30.2",
"react-use": "^17.4.0",
"remark-gfm": "^1.0.0",
"slick-carousel": "^1.8.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-offline": "^6.12.0",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-svgr-svgo": "^2.0.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"markdownlint-cli": "^0.35.0",
"node-fetch": "^2.6.7",
"postcss": "^8.4.29",
"postcss-import": "^15.1.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cilium/cilium.io"
},
"bugs": {
"url": "https://github.com/cilium/cilium.io/issues"
}
}