-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.09 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
{
"name": "kevink.dev",
"version": "1.1.0",
"private": true,
"description": "KevinK.dev",
"author": "Kevin Kandlbinder",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"prettier": "npx prettier --write .",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install",
"tscss": "typed-scss-modules src --watch"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/cli": "7.19.3",
"@babel/plugin-transform-typescript": "7.20.2",
"@fontsource/encode-sans": "4.5.9",
"@fontsource/open-sans": "4.5.13",
"@icons-pack/react-simple-icons": "6.2.0",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"@react-hook/media-query": "1.1.1",
"@types/animejs": "3.1.6",
"@types/node": "17.0.14",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"animejs": "3.2.1",
"babel-plugin-i18next-extract": "0.9.0",
"gatsby": "4.24.8",
"gatsby-awesome-pagination": "0.3.8",
"gatsby-cli": "4.24.0",
"gatsby-plugin-asset-path": "3.0.4",
"gatsby-plugin-feed": "4.24.0",
"gatsby-plugin-image": "2.24.0",
"gatsby-plugin-manifest": "4.24.0",
"gatsby-plugin-mdx": "3.20.0",
"gatsby-plugin-netlify": "5.0.1",
"gatsby-plugin-offline": "5.24.0",
"gatsby-plugin-portal": "1.0.7",
"gatsby-plugin-react-helmet": "5.24.0",
"gatsby-plugin-react-i18next": "2.0.5",
"gatsby-plugin-remote-images": "3.5.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sass": "5.24.0",
"gatsby-plugin-sharp": "4.24.0",
"gatsby-plugin-sitemap": "5.24.0",
"gatsby-plugin-typescript": "4.24.0",
"gatsby-remark-copy-linked-files": "5.24.0",
"gatsby-remark-images": "6.24.0",
"gatsby-source-filesystem": "4.24.0",
"gatsby-transformer-json": "4.24.0",
"gatsby-transformer-sharp": "4.24.0",
"hamburger-react": "2.5.0",
"i18next": "22.0.8",
"locale": "0.1.0",
"lodash": "4.17.21",
"lucide-react": "0.104.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-github-btn": "1.4.0",
"react-helmet": "6.1.0",
"react-i18next": "12.0.0",
"sass": "1.56.1",
"tsparticles": "2.6.0",
"typed-scss-modules": "7.0.1",
"utterances-react": "0.1.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.31.11",
"gatsby-plugin-eslint": "4.0.3",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "2.8.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,scss,json,tsx,ts}": "prettier --write"
}
}