-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.27 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
50
51
52
53
54
55
56
{
"name": "fangxing",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"validate:content": "node scripts/validate-content.mjs",
"optimize:images": "node scripts/optimize-images.mjs",
"build:journal-index": "node scripts/build-journal-index.mjs",
"content:tool": "node scripts/content-tool.mjs",
"content:article": "node add_article.cjs",
"content:add-slugs": "node scripts/add-journal-slugs.mjs",
"docs:github": "node scripts/generate-github-docs.mjs",
"test:github-docs": "node scripts/generate-github-docs.test.mjs",
"test:journal-order": "node scripts/journal-order.test.mjs",
"test:journal-week-labels": "node scripts/journal-week-labels.test.mjs",
"test:journal-dates": "node scripts/journal-dates.test.mjs",
"sitemap:generate": "node scripts/generate-sitemap.mjs",
"check:links": "node scripts/check-links.mjs",
"check:postdeploy": "node scripts/post-deploy-check.mjs",
"deploy": "npm run build && node scripts/deploy.mjs && npm run check:postdeploy",
"prebuild": "npm run optimize:images && npm run build:journal-index && npm run sitemap:generate",
"check:release": "npm run validate:content && npm run test:github-docs && npm run optimize:images && npm run build:journal-index && npm run test:journal-order && npm run test:journal-week-labels && npm run test:journal-dates && npm run lint && npm run typecheck && npm run build",
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^12.38.0",
"lucide-react": "^1.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.1"
},
"devDependencies": {
"@emnapi/runtime": "^1.11.2",
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4",
"xlsx": "^0.18.5"
}
}