-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.65 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.65 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
{
"name": "@kremalicious/blog",
"version": "5.0.0",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"description": "Blog of Designer & Developer Matthias Kretschmann",
"homepage": "https://kremalicious.com",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bun run prebuild && bun run --bun astro dev --config 'src/config/astro.config.ts'",
"build": "bun run --bun astro build --config 'src/config/astro.config.ts'",
"preview": "bun run --bun astro preview",
"typecheck:astro": "bun run --bun astro check",
"typecheck:tsc": "tsc --noEmit --pretty",
"typecheck": "bun run typecheck:astro && bun run typecheck:tsc",
"prebuild": "run-p --silent --continue-on-error create:symlinks move:downloads",
"test:unit": "vitest run --config './test/vitest.config.ts' --coverage",
"test:unit:watch": "vitest watch --config './test/vitest.config.ts' --coverage",
"test:e2e": "playwright test --config './test/playwright.config.ts'",
"lint:md": "markdownlint-cli2 --config '.markdownlint.json' './{content,src}/**/*.{md,markdown}'",
"format:md": "bun run lint:md --fix",
"lint:biome": "biome check .",
"format:biome": "biome check --write .",
"lint": "run-p --silent lint:biome lint:md",
"format": "run-p --silent format:biome format:md",
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "bun run scripts/new/index.ts",
"create:symlinks": "./scripts/create-symlinks.sh",
"move:downloads": "bun run scripts/move-downloads.ts",
"iptc:add": "bun run scripts/iptc-add.ts"
},
"dependencies": {
"@astrojs/check": "0.9.5",
"@astrojs/react": "4.4.2",
"@astrojs/rss": "4.0.14",
"@astrojs/sitemap": "3.6.0",
"@coingecko/cryptoformat": "0.8.2",
"@lucide/astro": "0.554.0",
"@nanostores/persistent": "1.2.0",
"@nanostores/query": "0.3.4",
"@nanostores/react": "1.0.0",
"@radix-ui/react-select": "2.2.6",
"@rainbow-me/rainbowkit": "2.2.9",
"@tanstack/react-query": "5.90.10",
"astro": "5.16.0",
"astro-expressive-code": "0.41.3",
"astro-redirect-from": "1.3.4",
"date-fns": "4.1.0",
"fraction.js": "5.3.4",
"fuse.js": "7.1.0",
"lucide-react": "0.554.0",
"lucide-static": "0.554.0",
"nanostores": "1.1.0",
"pigeon-maps": "0.22.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"remark-breaks": "4.0.0",
"slugify": "1.6.6",
"swr": "2.3.6",
"viem": "2.39.3",
"wagmi": "3.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@kremalicious/config": "2.2.0",
"@playwright/test": "1.56.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@types/bun": "1.3.3",
"@types/node": "24.10.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.0.13",
"chalk": "5.6.2",
"exifr": "7.1.3",
"exiftool-vendored": "33.3.0",
"globby": "16.0.0",
"happy-dom": "20.0.10",
"hast-util-to-html": "9.0.5",
"markdownlint-cli2": "0.19.1",
"mdast-util-to-hast": "13.2.0",
"mdast-util-to-string": "4.0.0",
"mdast-util-toc": "7.1.0",
"npm-run-all": "4.1.5",
"ora": "9.0.0",
"sharp": "0.34.5",
"sharp-ico": "0.1.5",
"typescript": "5.9.3",
"unist-util-visit": "5.0.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.0.13"
},
"engines": {
"bun": ">=1.3.2"
},
"packageManager": "bun@1.3.2",
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/blog.git"
},
"browserslist": {
"production": [
"defaults",
">0.2%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}