-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.21 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.21 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
63
64
65
66
67
68
69
{
"name": "starter-theme",
"version": "2.0.0",
"description": "A modern, minimalist personal landing page theme built with Astro 5, React 19 and Tailwind CSS",
"type": "module",
"scripts": {
"dev": "astro dev",
"dev:node": "NODE_OPTIONS='' astro dev",
"build": "astro build",
"build:node": "NODE_OPTIONS='' astro build",
"preview": "astro preview",
"astro": "astro",
"fetch:rss": "bun run scripts/fetch-rss.bun.js",
"prebuild": "bun run scripts/fetch-rss.bun.js || true",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,html,astro}'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,html,astro}'",
"type-check": "tsc --noEmit",
"lint": "astro check",
"clean": "rm -rf dist node_modules .astro",
"reinstall": "bun run clean && bun install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vncntvx/LandingPage.git"
},
"keywords": [
"astro",
"astro-theme",
"landing-page",
"personal-website",
"portfolio",
"tailwindcss",
"react",
"i18n",
"dark-mode",
"static-site"
],
"author": "Wenjie Xu <wenjie.xu.cn@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vncntvx/LandingPage/issues"
},
"homepage": "https://github.com/Vncntvx/LandingPage#readme",
"devDependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/tailwind": "^6.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/sitemap": "^3.6.0",
"@emailjs/browser": "^4.4.1",
"@iconify-json/mdi": "^1.2.3",
"astro": "^5.16.5",
"astro-icon": "^1.1.5",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.4",
"prop-types": "^15.8.1",
"react": "^19.2.1",
"react-dom": "^19.2.1"
}
}