-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "devliu-blog",
"version": "1.0.0",
"private": true,
"description": "DevLiu's personal blog built with Next.js 14",
"scripts": {
"dev": "next dev",
"build": "npm run type-check && npm run validate && next build && npm run build:rss",
"start": "next start",
"lint": "next lint --fix",
"type-check": "tsc --noEmit",
"new-post": "ts-node scripts/create-post.ts",
"validate": "ts-node scripts/validate-posts.ts",
"build:rss": "ts-node scripts/generate-feed.ts",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"dependencies": {
"@types/node": "^20.10.4",
"@types/pinyin": "^2.10.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"date-fns": "^3.0.6",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"mdast-util-from-markdown": "^1.3.1",
"mdast-util-to-string": "^3.2.0",
"micromark": "^3.2.0",
"micromark-core-commonmark": "^1.1.0",
"next": "14.0.4",
"pinyin": "^4.0.0-alpha.2",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-rehype": "^10.1.0",
"unist-util-visit": "^4.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/js-yaml": "^4.0.9",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.4",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"postcss": "^8.4.32",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}