-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "milo-os.com",
"type": "module",
"private": true,
"scripts": {
"dev:astro": "astro dev --host --typecheck",
"build:astro": "astro check --skip-playwright && astro build",
"dev": "bun run dev:astro",
"build": "bun run build:astro",
"start": "bun ./server.mjs",
"start:original": "bun ./dist/server/entry.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.md,.mdx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.md,.mdx --fix",
"lint:md": "bunx markdownlint-cli \"src/content/**/*.{md,mdx}\"",
"lint:md:fix": "bunx markdownlint-cli \"src/content/**/*.{md,mdx}\" --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,astro,md,mdx,json,css,scss}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,astro,md,mdx,json,css,scss}\"",
"prepare": "husky",
"typecheck": "astro check",
"precommit": "bun run typecheck && bun run lint && bun run lint:md && bun run lint:md:fix && bun run format && bun run format:check"
},
"dependencies": {
"@astrojs/alpinejs": "^0.5.0",
"@astrojs/mdx": "^4.3.14",
"@astrojs/node": "^9.5.4",
"@lucide/astro": "^0.577.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.11",
"astro": "^5.18.1",
"astro-breadcrumbs": "^3.4.0",
"astro-seo": "^1.1.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"lenis": "^1.3.21",
"mermaid": "^11.14.0",
"octokit": "^5.0.5",
"openid-client": "^6.8.3",
"postgres": "^3.4.9",
"sirv": "^3.0.2",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"tailwindcss": "^4.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-arm64-gnu": "4.60.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"npx markdownlint-cli --fix"
],
"*.{json,css,scss}": [
"prettier --write"
]
}
}