-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
105 lines (105 loc) · 3.35 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
{
"name": "pixie-blog",
"version": "0.1.0",
"private": true,
"description": "Source for blog.px.dev",
"keywords": [
"gatsby",
"pixie"
],
"bugs": {
"url": "https://github.com/pixie-io/pixie-blog/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pixie-io/pixie-blog"
},
"license": "Apache-2.0 and CC-BY-4.0",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' && git ls-files '**/*.tsx' '**/*.ts' '**/*.js' '**/*.jsx' '**/*.scss' '**/*.py' | xargs -n1 tools/licenses/checker.py -f",
"lint-fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"prepare": "yarn run snyk-protect",
"snyk-protect": "snyk-protect"
},
"resolutions": {
"@gatsbyjs/potrace": "./tools/no-potrace",
"lodash": "^4.17.21"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/server": "latest",
"@emotion/styled": "^11.8.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mdx-js/runtime": "^2.0.0-next.9",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.8.0",
"@mui/styles": "^5.8.0",
"@mui/system": "^5.5.2",
"@netlify/plugin-gatsby": "^3.0.0",
"@snyk/protect": "^1.717.0",
"algoliasearch": "^4.13.0",
"dotenv": "^14.3.2",
"escape-string-regexp": "^5.0.0",
"gatsby": "^4.25.7",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-feed": "^4.12.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^2.9.1",
"gatsby-plugin-manifest": "^4.12.1",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-netlify": "^4.2.0",
"gatsby-plugin-react-helmet": "^5.9.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-sass": "^5.9.0",
"gatsby-plugin-segment-js": "^3.7.1",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.12.1",
"gatsby-remark-copy-linked-files": "^5.12.1",
"gatsby-remark-images": "^6.14.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-remark-unwrap-images": "^1.0.2",
"gatsby-source-filesystem": "^4.9.1",
"gatsby-source-gravatar": "^1.0.2",
"gatsby-transformer-sharp": "^4.9.0",
"gatsby-transformer-yaml": "^4.12.1",
"js-cookie": "^3.0.1",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^5.2.1",
"react-share": "^4.4.0",
"remark-containers": "^1.2.0",
"sass": "^1.49.9",
"slugify": "^1.3.6"
},
"devDependencies": {
"@types/js-cookie": "^3.0.1",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"snyk": true
}