-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.29 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
101
102
103
104
{
"name": "get6.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "npx serve@latest out",
"lint": "eslint . --ext .ts,.tsx",
"copy-dir": "ts-node scripts/copy-image.ts",
"test:copy-image": "ts-node scripts/copy-image.test.ts",
"test:to-local-asset": "ts-node scripts/to-local-asset.test.ts",
"test:rewrite-markdown-images": "ts-node scripts/rewrite-markdown-images.test.ts",
"test:toc": "ts-node scripts/toc.test.ts",
"copy-fonts": "ts-node scripts/copy-pretendard.ts",
"predev": "pnpm copy-dir && pnpm copy-fonts",
"prebuild": "pnpm copy-dir && pnpm copy-fonts",
"prepare": "husky",
"build:content": "contentlayer2 build"
},
"dependencies": {
"@date-fns/tz": "^1.5.0",
"@giscus/react": "^3.1.0",
"@heroicons/react": "^2.2.0",
"@next/bundle-analyzer": "^16.3.3",
"contentlayer2": "^0.5.8",
"date-fns": "^4.4.0",
"esbuild": "^0.28.2",
"js-yaml": "^5.4.1",
"next": "^16.3.3",
"next-contentlayer2": "^0.5.8",
"next-themes": "^0.4.6",
"pretendard": "^1.3.9",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-responsive-carousel": "^3.2.23",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.35.4",
"unified": "^11.0.5",
"unified-stream": "^3.0.0",
"unist-util-visit": "^5.1.0",
"use-debounce": "^10.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"baseline-browser-mapping": "^2.11.20",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.25",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-pretty-code": "^0.14.5",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-callout": "^1.1.1",
"remark-embed-images": "^5.0.0",
"remark-flexible-code-titles": "^1.3.5",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-lint": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"remark-toc": "^9.0.0",
"shiki": "^4.4.3",
"tailwindcss": "^4.3.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"pnpm": {
"overrides": {
"esbuild": "^0.28.2",
"glob": "^10.5.0",
"js-yaml": "^5.4.1",
"gray-matter>js-yaml": "^3.15.1",
"mdast-util-to-hast": "^13.2.1",
"flatted": ">=3.4.2",
"ajv": "^6.14.0",
"diff": "^4.0.4",
"minimatch": ">=3.1.3",
"protobufjs": ">=8.6.0",
"picomatch": ">=4.0.4",
"brace-expansion@1": ">=1.1.13",
"brace-expansion@2": ">=2.0.3",
"yaml@2": ">=2.8.3",
"uuid": ">=11.1.0",
"postcss": ">=8.5.10"
}
}
}