-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "blog",
"version": "0.0.0-semantic-release",
"scripts": {
"commit": "git-cz",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --pretty --noEmit",
"textlint": "textlint '_posts/*.md'",
"postbuild": "next-sitemap"
},
"dependencies": {
"classnames": "^2.5.1",
"date-fns": "^4.0.0",
"dompurify": "^3.1.7",
"gray-matter": "^4.0.3",
"mermaid": "^11.3.0",
"next": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^15.0.1",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@zhumeisong/git-cz-config": "^1.1.1",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"git-cz": "^4.9.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.38",
"semantic-release": "^24.1.2",
"tailwindcss": "^3.4.4",
"textlint": "^14.2.1",
"typescript": "^5.5.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"packageManager": "[email protected]",
"volta": {
"node": "20.18.0",
"pnpm": "9.12.2"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}