-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.31 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
{
"name": "sawaych.github.io",
"version": "1.0.0",
"private": true,
"description": "sawaych.github.io",
"author": "Sawa",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop --H 0.0.0.0",
"start": "gatsby develop --H 0.0.0.0",
"build": "gatsby build",
"serve": "gatsby serve --H 0.0.0.0",
"clean": "gatsby clean",
"ci:lint": "eslint --ext .ts,.tsx ./src",
"ci:typecheck": "tsc --noEmit",
"ci:prettier": "prettier -c \"src/**/*.{ts,tsx,md}\"",
"codecheck": "npm run ci:typecheck && npm run ci:prettier && npm run ci:lint",
"prettier-fix": "prettier -w \"src/**/*.{ts,tsx,md}\"",
"deploy": "gatsby build && gh-pages -d public -b master"
},
"dependencies": {
"@mantine/core": "^7.7.1",
"@mantine/hooks": "^7.7.1",
"@mantine/spotlight": "^7.7.1",
"@mdx-js/react": "^2.3.0",
"@tabler/icons-react": "^3.1.0",
"chart.js": "^4.3.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"embla-carousel-react": "^7.1.0",
"file-saver": "^2.0.5",
"framer-motion": "^10.12.18",
"gatsby": "5.13.3",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-manifest": "^5.11.0",
"gatsby-plugin-mdx": "^5.11.0",
"gatsby-plugin-react-helmet": "^6.11.0",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-source-strapi": "^3.3.3",
"gatsby-transformer-remark": "^6.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-animated-cursor": "^2.11.2",
"react-chartjs-2": "^5.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-image": "^4.1.0",
"react-markdown": "^8.0.7",
"react-player": "^2.12.0",
"react-resize-detector": "^9.1.0",
"react-syntax-highlighter": "^15.5.0",
"react-virtualized": "^9.22.5",
"react-zoom-pan-pinch": "^3.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.6.3",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"tailwind-dracula": "^1.1.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/file-saver": "^2.0.5",
"@types/node": "^20.2.6",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@types/react-helmet": "^6.1.6",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/react-virtualized": "^9.21.29",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.4.17",
"babel-preset-gatsby": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-postcss": "^6.13.1",
"gh-pages": "^5.0.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "2.8.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
},
"overrides": {
"[email protected]": {
"react": "^18.0.0"
},
"gatsby": {
"gatsby-graphiql-explorer": "3.11.0"
}
}
}