forked from datum-cloud/datum.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 4.04 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "datum.net",
"type": "module",
"private": true,
"scripts": {
"build:pagefind": "npx pagefind",
"build:pagefind:blog": "npx pagefind --site dist/client --glob '**/blog/**/*.{html}' --output-path dist/pagefind-blog",
"copy:pagefind": "npx shx cp -r dist/client/pagefind public/",
"copy:pagefind:blog": "npx shx cp -r dist/pagefind-blog public/",
"dev:astro": "astro dev --host --typecheck",
"build:astro": "astro check --skip-playwright && astro build",
"dev": "npm run dev:astro && npm run build:pagefind && npm run copy:pagefind",
"build": "npm run build:astro && npm run build:pagefind",
"start": "node ./server.mjs",
"start:original": "node ./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": "npx markdownlint-cli \"src/content/**/*.{md,mdx}\"",
"lint:md:fix": "npx 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": "npm run typecheck && npm run lint && npm run lint:md && npm run lint:md:fix && npm run format && npm run format:check",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"generate:api-docs": "tsx scripts/generate-api-docs.ts"
},
"dependencies": {
"@alpinejs/collapse": "^3.15.4",
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/mdx": "^4.3.13",
"@astrojs/node": "^9.5.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/starlight": "^0.37.3",
"@astrojs/ts-plugin": "^1.10.6",
"@kubernetes/client-node": "^1.4.0",
"@lucide/astro": "^0.562.0",
"@nanostores/persistent": "^1.2.0",
"@playform/compress": "^0.2.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.4",
"astro": "^5.16.11",
"astro-breadcrumbs": "^3.3.3",
"astro-compressor": "^1.2.0",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^1.1.0",
"cheerio": "^1.1.2",
"compression": "^1.8.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"express": "^5.2.1",
"lenis": "^1.3.17",
"mdast-util-to-string": "^4.0.0",
"mermaid": "^11.12.2",
"nanostores": "^1.1.0",
"octokit": "^5.0.5",
"openid-client": "^6.8.1",
"postgres": "^3.4.8",
"reading-time": "^1.5.0",
"sirv": "^3.0.2",
"slugify": "^1.6.6",
"tailwindcss": "^4.1.18",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@types/alpinejs__collapse": "^3.13.4",
"@types/node": "^24.10.9",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli": "^0.47.0",
"pagefind": "^1.4.0",
"prettier": "^3.8.0",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-arm64-gnu": "4.55.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"npm run typecheck",
"npm run lint",
"npm run format:check"
],
"*.{md,mdx}": [
"npm run lint:md",
"npm run lint:md:fix"
],
"*.{json,css,scss}": [
"npm run format:check",
"npm run format"
]
}
}