-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.65 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
68
69
70
71
72
73
74
75
76
{
"name": "hrry.me",
"type": "module",
"version": "0.0.1",
"private": true,
"author": "Harry Brown",
"repository": {
"type": "git",
"url": "https://github.com/harrybrwn/harrybrwn.github.io.git"
},
"scripts": {
"dev": "node scripts/generate.js && astro dev",
"build": "astro build",
"build:netlify": " astro build",
"build:all": "pnpm -r run build && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "pnpm -r run test:ci",
"lint": "pnpm run astro check",
"sync": "astro sync",
"clean": "rm -rf ./dist/ ./.vercel/ ./.netlify/ *.tar.gz *.zip && pnpm -r run clean",
"new": "node packages/astro/new/index.js",
"gen": "node scripts/generate.js",
"dev:server": "node scripts/generate.js && ASTRO_OUTPUT=server astro dev",
"build:server": "scripts/build-server.sh",
"preview:server": "ASTRO_OUTPUT=server astro preview",
"container": "docker container run --rm -it -p 3000:3000 -e PORT=3000 --name astro-server harrybrwn/harrybrwn.github.io-server:latest",
"image": "docker buildx bake -f docker-bake.hcl",
"proxy": "docker compose -f docker-compose.yml -f docker-compose.local.yml up dev dev-tls-proxy",
"bun:install": "bun install && (cd node_modules/sharp && bun run install)",
"postinstall": "command -v bun && (cd node_modules/sharp && bun run install) || true"
},
"workspaces": [
"./packages/astro/*",
"./packages/hrry.me/api"
],
"dependencies": {
"@astro.hrry.dev/compress": "workspace:*",
"@astro.hrry.dev/new": "workspace:*",
"@astro.hrry.dev/obsidian": "workspace:*",
"@astro.hrry.dev/robots.txt": "workspace:*",
"@astro.hrry.dev/wikilink": "workspace:*",
"@astrojs/check": "^0.9.3",
"@astrojs/cloudflare": "^11.0.5",
"@astrojs/mdx": "^2.3",
"@astrojs/netlify": "^5.5.3",
"@astrojs/node": "^8.3.4",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.2",
"@hrry.me/api": "workspace:*",
"astro": "^4",
"astro-purgecss": "^4.6",
"github-slugger": "^2.0.0",
"prism-themes-scss": "github:harrybrwn/prism-themes-scss#main",
"solid-js": "^1.9"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"purgecss": "^6.0.0",
"sass": "^1.57.1",
"typescript": "^5.6.2",
"walkdir": "^0.4.1"
},
"trustedDependencies": [
"sharp",
"compress",
"astro-compress"
],
"files": [
"./dist/**/*"
],
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}