forked from GDG-Nantes/Devfest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "devfest",
"version": "1.0.0",
"private": true,
"description": "Devfest",
"author": "ArtyMaury",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"generate": "json2ts -i 'json_schemas/*.json' -o json_schemas/interfaces/",
"postinstall": "npm run generate"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.81",
"@mui/material": "^5.7.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"gatsby": "^4.14.0",
"gatsby-plugin-google-gtag": "^4.14.0",
"gatsby-plugin-graphql-config": "^1.14.0",
"gatsby-plugin-image": "^2.14.1",
"gatsby-plugin-manifest": "^4.14.0",
"gatsby-plugin-mdx": "^3.14.0",
"gatsby-plugin-offline": "^5.14.0",
"gatsby-plugin-react-helmet": "^5.14.0",
"gatsby-plugin-remote-images": "^3.4.0",
"gatsby-plugin-sass": "^5.14.0",
"gatsby-plugin-sharp": "^4.14.1",
"gatsby-plugin-sitemap": "^5.14.0",
"gatsby-plugin-typescript": "^4.14.0",
"gatsby-source-filesystem": "^4.14.0",
"gatsby-theme-i18n": "^3.0.0",
"gatsby-theme-i18n-react-i18next": "^3.0.0",
"gatsby-theme-material-ui": "^5.2.0",
"gatsby-transformer-sharp": "^4.14.0",
"gatsby-transformer-yaml": "^4.14.0",
"i18next": "^21.8.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.3",
"sass": "^1.51.0",
"sharp": "^0.30.4"
},
"devDependencies": {
"@types/mdx": "^2.0.1",
"@types/mdx-js__react": "^1.5.5",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"install": "^0.13.0",
"json-schema-to-typescript": "^10.1.5",
"npm": "^8.10.0",
"react-i18next": "^11.16.9",
"rehype-raw": "^6.1.1",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"remark-preset-github": "^4.0.4",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"schema-dts": "^1.1.0",
"typescript": "^4.6.4"
}
}