-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.55 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
{
"name": "z-chen-site",
"version": "2.0.0",
"private": true,
"description": "Personal academic site of Zeming (Romain) Chen",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"assets": "node scripts/build-assets.mjs",
"check": "npm run lint && npm test && node scripts/chinese-audit.mjs && npm run build && node scripts/qa.mjs && node scripts/layout-audit.mjs",
"cv": "npm run build && node scripts/build-cv.mjs && node scripts/build-resume-zh.mjs",
"qa": "npm run build && node scripts/qa.mjs",
"review": "npm run build && node scripts/review.mjs",
"layout": "npm run build && node scripts/layout-audit.mjs",
"zh": "node scripts/chinese-audit.mjs",
"resume": "node scripts/build-resume-zh.mjs"
},
"dependencies": {
"gray-matter": "4.0.3",
"next": "16.2.12",
"react": "19.2.8",
"react-dom": "19.2.8",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"unified": "11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.6",
"@tailwindcss/postcss": "4.3.3",
"@types/node": "24.9.2",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"eslint": "9.39.1",
"eslint-config-next": "16.2.12",
"puppeteer-core": "^24.28.0",
"sharp": "0.35.3",
"tailwindcss": "4.3.3",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}