-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "lee-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8084",
"prebuild": "npm run lint && npm run format:check",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"prepare": "lefthook install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write --ignore-path .prettierignore"
],
"*.{json,css,md}": [
"prettier --write --ignore-path .prettierignore"
]
},
"dependencies": {
"@notionhq/client": "^5.4.0",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.11",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/blob": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"lodash": "^4.17.21",
"lucide-react": "^0.555.0",
"next": "16.0.7",
"notion-to-md": "^3.1.9",
"nuqs": "^2.8.1",
"query-string": "^9.3.1",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-intersection-observer": "^10.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/lodash": "^4.17.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"lefthook": "^2.0.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4",
"typescript": "^5"
}
}