-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.73 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dev-blog",
"description": "프론트엔드 개발자 여찬규의 기술 블로그. Next.js App Router와 MDX로 만든 정적 사이트입니다.",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/chan9yu/dev-blog.git"
},
"license": "MIT",
"author": "chan9yu <dev.cgyeo@gmail.com>",
"private": true,
"packageManager": "pnpm@11.24.0",
"engines": {
"node": "24.x",
"pnpm": "11.x"
},
"scripts": {
"dev": "next dev --port 3100",
"start": "next start",
"prebuild": "pnpm validate:seo && node scripts/copy-images.mjs",
"build": "next build",
"build:strict": "STRICT_FRONTMATTER=1 pnpm build",
"build:vercel": "pnpm build:strict && node scripts/notify-indexnow.mjs",
"validate:seo": "node scripts/validate-seo.mjs",
"copy:images": "node scripts/copy-images.mjs",
"type:check": "tsc --noEmit",
"lint": "eslint",
"lint:arch": "steiger src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"install:vercel": "bash scripts/clone-contents.sh && pnpm install",
"link:agents": "bash .agents/scripts/link-agents.sh",
"prepare": "lefthook install && pnpm link:agents"
},
"dependencies": {
"@shikijs/rehype": "^4.4.3",
"@upstash/redis": "^1.38.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"fuse.js": "^7.5.0",
"lucide-react": "^1.37.0",
"next": "^16.3.3",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.4.3",
"tailwind-merge": "^3.6.0",
"vfile": "^6.0.3",
"vfile-matter": "^5.0.1",
"zod": "^4.5.2"
},
"devDependencies": {
"@feature-sliced/steiger-plugin": "^0.7.0",
"@playwright/test": "^1.62.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitest/coverage-v8": "^4.1.11",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^14.0.0",
"jsdom": "^30.0.1",
"lefthook": "^2.1.12",
"msw": "^2.15.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"steiger": "^0.6.0",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
}
}