-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"name": "john-kurkowski.github.io",
"version": "1.0.0",
"type": "module",
"description": "Source for https://johnkurkowski.com.",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "biome check . && git ls-files '*.css' | xargs stylelint && prettier --cache --list-different '**/*.{md,mdx,yml}' && npm run type-check",
"check:fix": "biome check --write . && git ls-files '*.css' | xargs stylelint --fix && prettier --cache --list-different --write '**/*.{md,mdx,yml}'",
"dev": "astro dev --host",
"prepare": "astro sync",
"preview": "astro preview --host",
"start": "astro dev --host",
"test": "npm run check && npm run build && node --test 'test/**/*.test.ts'",
"test:vrt": "playwright test",
"type-check": "astro check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/john-kurkowski/john-kurkowski.github.io.git"
},
"author": "John Kurkowski <john.kurkowski@gmail.com> (https://johnkurkowski.com/)",
"license": "UNLICENSED",
"private": true,
"homepage": "https://github.com/john-kurkowski/john-kurkowski.github.io#readme",
"dependencies": {
"@astrojs/mdx": "^6.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@tailwindcss/vite": "^4.3.1",
"astro": "^6.4.6",
"astro-seo": "^1.1.0",
"tailwindcss": "^4.3.1"
},
"devDependencies": {
"@argos-ci/playwright": "^7.0.6",
"@astrojs/check": "^0.9.9",
"@biomejs/biome": "^2.5.0",
"@playwright/test": "^1.60.0",
"@types/culori": "^4.0.1",
"@types/node": "^24.13.2",
"culori": "^4.0.2",
"prettier": "^3.8.4",
"stylelint": "^17.13.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"vite": "^7.3.5"
}
}