-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.76 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
57
58
59
60
61
62
{
"name": "academic-website-template",
"type": "module",
"version": "1.0.0",
"description": "A forkable academic/lab website template built with Astro, Vue, and Tailwind CSS",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"sync:feeds": "tsx scripts/sync-feeds.ts",
"sync:scholar": "python3 scripts/sync-scholar.py",
"render:cv": "python3 scripts/render-cv.py",
"generate:keywords": "tsx scripts/generate-seo-keywords.ts",
"migrate:al-folio": "tsx scripts/migrate-al-folio.ts",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"format": "prettier --write .",
"check": "astro check"
},
"dependencies": {
"@astrojs/mdx": "^4.0.0",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/vue": "^5.0.0",
"astro": "^5.0.0",
"gsap": "^3.12.0",
"remark-math": "^6.0.0",
"unist-util-visit": "^5.1.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.0.0",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.2",
"eslint": "^10.0.0",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-vue": "^10.7.0",
"globals": "^17.3.0",
"js-yaml": "^4.1.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rss-parser": "^3.13.0",
"sharp": "^0.33.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.7.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"esbuild"
]
}
}