-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "personal-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.14",
"@mui/system": "^5.14.14",
"@mui/x-tree-view": "6.0.0-beta.0",
"@next/third-parties": "^14.1.4",
"next": "15.0.3",
"react": "^18.3.1",
"react-bubble-ui": "^1.1.2",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-github-calendar": "^4.1.3",
"react-graph-vis": "^1.0.7",
"react-icons": "^4.11.0",
"react-markdown": "8.0.7",
"rehype-raw": "^6.1.1",
"remark-breaks": "^3.0.3",
"remark-gfm": "3.0.1",
"resend": "^3.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.3",
"typescript": "^5"
}
}