-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 3.16 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
{
"name": "pixie-website",
"version": "0.1.0",
"description": "The px.dev website",
"license": "Apache-2.0 AND CC-BY-4.0",
"author": "Pixie Labs <[email protected]>",
"dependencies": {
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"@mui/styles": "^5.9.1",
"@snyk/protect": "latest",
"babel-plugin-styled-components": "^2.0.7",
"dotenv": "^16.0.1",
"eslint-plugin-prettier": "^4.2.1",
"gatsby": "^4.19.1",
"gatsby-image": "^3.11.0",
"gatsby-plugin-anchor-links": "^1.2.0",
"gatsby-plugin-emotion": "^7.19.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-tagmanager": "^4.19.0",
"gatsby-plugin-hubspot": "^2.0.0",
"gatsby-plugin-manifest": "^4.19.0",
"gatsby-plugin-offline": "^5.19.0",
"gatsby-plugin-react-css-modules-scss-support": "^0.1.0",
"gatsby-plugin-react-helmet": "^5.19.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sass": "^5.19.0",
"gatsby-plugin-scroll-reveal": "^0.0.7",
"gatsby-plugin-segment-js": "^3.1.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-styled-components": "^5.19.0",
"gatsby-plugin-typescript": "^4.19.0",
"gatsby-remark-copy-linked-files": "^5.19.0",
"gatsby-remark-images": "^6.19.0",
"gatsby-source-filesystem": "^4.19.0",
"gatsby-theme-material-ui": "^5.2.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.19.0",
"js-cookie": "^3.0.1",
"node-fetch": "^2.6.0",
"prism-react-renderer": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-body-classname": "^1.3.1",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-multi-carousel": "^2.5.5",
"rehype-react": "^7.1.1",
"sass": "^1.42.1",
"slugify": "^1.3.6",
"styled-components": "^5.3.5",
"typescript": "^4.7.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-sitemap": "^5.19.0",
"prettier": "^2.7.1"
},
"resolutions": {
"gatsby-plugin-react-svg/svg-react-loader/loader-utils": "^1.4.1",
"semver": "^7.5.3"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"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",
"prepublish": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"snyk": true
}