-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"name": "openknowledgebe-website",
"private": true,
"homepage": "https://github.com/openknowledgebe/website",
"version": "0.1.0",
"dependencies": {
"@fontsource/chivo": "^4.5.11",
"@fontsource/work-sans": "^4.5.14",
"babel-plugin-styled-components": "^2.1.1",
"gatsby": "^2.32.13",
"gatsby-image": "^3.11.0",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-netlify-cms": "^4.10.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-json": "^2.11.0",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.1",
"markdown-to-jsx": "^7.2.0",
"netlify-cms-app": "^2.15.72",
"netlify-cms-media-library-cloudinary": "^1.3.10",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.9",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.7"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,jsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": "eslint --fix",
"**/*.{js,jsx,ts,tsx,json,md}": "prettier --write"
}
}