-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.88 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.88 KB
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
{
"name": "Dream.Code.Sleep.Repeat.",
"private": true,
"description": "Personal website & blog of Powell Ye",
"version": "3.2.1",
"author": "Paul Yermolin <oatto.paul@gmail.com>",
"scripts": {
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"build": "gatsby clean && gatsby build",
"start": "gatsby clean && gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"deploy": "npm run build && npx gh-pages -d public -b master"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{json,md,mdx}": [
"prettier --write",
"git add"
],
"src/**/*.{ts,tsx,js,jsx}": [
"npx eslint --fix",
"git add"
]
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^10.0.14",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@mdx-js/react": "^3.1.0",
"@shikijs/twoslash": "^3.1.0",
"eslint-import-resolver-typescript": "^3.8.3",
"gatsby": "^5.0.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-emotion": "^8.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-mdx": "^5.14.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-react-helmet": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-remark-images": "^7.0.0",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"gsap": "^2.1.3",
"idb-keyval": "^6.2.1",
"normalize.css": "^8.0.1",
"posthog-js": "^1.88.1",
"prism-react-renderer": "^0.1.7",
"prop-types": "^15.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^5.0.0",
"shiki": "^3.1.0",
"three": "^0.155.0",
"twoslash-cdn": "^0.3.1",
"unstorage": "^1.15.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^7.5.0",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.5",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/three": "^0.155.1",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"gatsby-cli": "^2.7.8",
"gatsby-plugin-typescript": "^5.0.0",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.19.1",
"type-fest": "^4.37.0",
"typescript": "^5.7.3"
},
"keywords": [
"gatsby",
"blog",
"personal-website"
],
"engines": {
"node": ">=12.13.0"
}
}