-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.47 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
{
"name": "chengpeiquan.com",
"version": "2.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "run-s dev:*",
"dev:cache": "pnpm build:cache",
"dev:app": "next dev -p 4832",
"build": "run-s build:*",
"build:cache": "tsx ./scripts/generate-cache.ts",
"build:app": "next build",
"build:copy-assets": "tsx ./scripts/copy-assets.ts",
"preview": "docker-compose build && docker-compose up -d",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"up": "npx taze minor -r -f -w -i",
"prepare": "husky"
},
"dependencies": {
"@bassist/utils": "^0.16.0",
"@web-analytics/core": "^0.1.5",
"blackwork": "^0.7.1",
"chengpeiquan.com": "link:",
"flexsearch": "^0.7.43",
"next": "^15.1.3",
"next-intl": "^3.26.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-forage": "^0.2.2",
"react-ga4": "^2.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@bassist/commit": "^0.1.1",
"@bassist/eslint": "^0.7.0",
"@bassist/node-utils": "^0.4.1",
"@bassist/tsconfig": "^0.1.1",
"@shikijs/rehype": "^1.24.4",
"@stefanprobst/rehype-extract-toc": "^2.2.1",
"@tailwindcss/typography": "^0.5.15",
"@types/mdast": "^4.0.4",
"@types/node": "^20.17.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"image-size": "^1.2.0",
"lint-staged": "^15.3.0",
"npm-run-all2": "^6.2.6",
"postcss": "^8.4.49",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-react": "^8.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"rehype-unwrap-images": "^1.0.0",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"unplugin-auto-import": "^0.18.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}