-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.12 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
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": "blog.seonest.net",
"version": "0.0.2",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/JHSeo-git/blog.seonest.net.git"
},
"license": "MIT",
"author": {
"name": "JHSeo",
"email": "qnfqnfqnf@gmail.com"
},
"type": "module",
"scripts": {
"analyze": "ANALYZE=true pnpm build",
"build": "next build",
"dev": "next dev --turbopack",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx,json}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx,json}\" --cache",
"postinstall": "npx prisma generate",
"lint": "next lint",
"lint:fix": "next lint --fix",
"post": "seonest-post-gen -d content/posts",
"prepare": "simple-git-hooks",
"start": "next start",
"typecheck": "tsc --noEmit",
"tz": "date -u +\"%Y-%m-%dT%H:%M:%SZ\""
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.10",
"@giscus/react": "^3.1.0",
"@prisma/client": "^6.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-toggle": "^1.1.1",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "^0.5.3",
"date-fns": "^4.1.0",
"framer-motion": "^11.15.0",
"giscus": "^1.6.0",
"github-slugger": "^2.0.0",
"lucide-react": "^0.469.0",
"next": "15.1.3",
"next-contentlayer2": "^0.5.3",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-is": "19.0.0",
"react-medium-image-zoom": "^5.2.13",
"react-twc": "^1.4.2",
"react-tweet": "^3.2.1",
"sharp": "^0.33.5",
"shiki": "^1.26.0",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@next/bundle-analyzer": "15.1.3",
"@types/glob": "^8.1.0",
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.5",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json-format": "2.0.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.14.0",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"pretty-quick": "^4.0.0",
"prisma": "^6.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"seonest-post-gen": "^0.4.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.5",
"typescript": "^5.7.2"
},
"prisma": {
"seed": "node -r esbuild-register prisma/seed.ts"
}
}