This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.79 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
{
"name": "web-www",
"private": true,
"version": "0.0.1",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/lab": "^5.0.0-alpha.54",
"@mui/material": "^5.1.0",
"@mui/styles": "^5.1.0",
"@reach/router": "^1.1.1",
"@regen-network/web-components": "0.2.10",
"@sanity/image-url": "^1.0.1",
"axios": "^0.21.1",
"clean-css": "^5.3.1",
"clsx": "1.1.0",
"formik": "2.2.9",
"gatsby": "^2.21.0",
"gatsby-background-image": "^1.1.1",
"gatsby-image": "^2.4.0",
"gatsby-link": "^2.4.0",
"gatsby-plugin-advanced-sitemap": "^1.5.5",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-google-analytics-gdpr": "^0.0.5",
"gatsby-plugin-layout": "1.3.4",
"gatsby-plugin-manifest": "^2.4.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-netlify": "^2.3.13",
"gatsby-plugin-offline": "^3.2.0",
"gatsby-plugin-react-helmet": "^3.3.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sanity-image": "^0.9.0",
"gatsby-plugin-sharp": "^2.6.0",
"gatsby-plugin-typescript": "4.24.0",
"gatsby-react-router-scroll": "^2.3.0",
"gatsby-source-filesystem": "^2.3.0",
"gatsby-source-sanity": "6.0.4",
"gatsby-transformer-remark": "^2.8.25",
"gatsby-transformer-sharp": "^2.5.0",
"gatsby-transformer-yaml-plus": "^0.2.2",
"intersection-observer": "^0.10.0",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.0.0",
"react-html-parser": "^2.0.2",
"react-laag": "1.7.3",
"react-lazyload": "^3.2.0",
"react-use-intercom": "^1.2.0",
"remark-html": "^12.0.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-graphql-files-modules": "1.18.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.4.1"
},
"resolutions": {
"react": "^17.0.2",
"react-dom": "17.0.2"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint ./src -c .eslintrc.js --max-warnings 0 --ext .ts,.tsx",
"lint-fix": "eslint ./src --fix -c .eslintrc.js --ext .ts,.tsx",
"format": "prettier --write --loglevel warn './src/**/*.{ts,tsx,json,md,css}'",
"format-and-fix": "yarn format && yarn lint-fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"graphql:codegen": "graphql-codegen --config codegen.yml"
}
}