-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.5 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
{
"name": "personal-website-v7",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "astro dev",
"dev": "astro dev",
"deploy:prod": "NODE_ENV=production wrangler pages deploy dist --project-name personal-website-v7 --branch production",
"deploy:staging": "NODE_ENV=staging wrangler pages deploy dist --project-name personal-website-v7 --branch preview",
"build:prod": "NODE_ENV=production astro build --mode production",
"build:staging": "NODE_ENV=staging astro build --mode staging",
"lint": "astro check",
"lint:fix": "astro check --fix",
"format": "prettier --no-error-on-unmatched-pattern --check */**/*.{js,json,ts,css,md,mdx,astro} --cache --cache-strategy metadata",
"format:fix": "prettier --write */**/*.{js,json,ts,css,md,mdx,astro} --cache --cache-strategy metadata",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "4.0.8",
"@astrojs/partytown": "2.1.3",
"@astrojs/react": "4.2.0",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@playform/compress": "^0.1.7",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@types/react-dom": "^19.0.3",
"astro": "5.2.5",
"astro-capo": "^0.0.1",
"astro-og-canvas": "^0.5.6",
"astro-seo": "^0.8.4",
"canvaskit-wasm": "^0.39.1",
"dayjs": "^1.11.13",
"fdir": "^6.4.3",
"markdown-it": "^14.1.0",
"picomatch": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-prepend-url": "^1.0.1",
"sanitize-html": "^2.14.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"whois": "^2.14.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/bun": "^1.2.1",
"@types/markdown-it": "^14.1.2",
"@types/react": "^19.0.8",
"@types/sanitize-html": "^2.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mdast": "^3.0.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"react-compiler-runtime": "^19.0.0-beta-b2e8e9c-20241220",
"sharp": "^0.33.5",
"typescript": "^5.7.3",
"unified": "^11.0.5",
"vite": "^6.0.11",
"wrangler": "^3.105.1"
}
}