-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
109 lines (109 loc) · 3.59 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
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
{
"name": "@kremalicious/blog",
"version": "5.0.0",
"author": "Matthias Kretschmann <[email protected]>",
"description": "Blog of Designer & Developer Matthias Kretschmann",
"homepage": "https://kremalicious.com",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npm run prebuild && astro dev --config 'config/astro.config.ts'",
"build": "astro build --config 'config/astro.config.ts'",
"preview": "astro preview",
"typecheck:astro": "astro check",
"typecheck:tsc": "tsc --noEmit --pretty",
"typecheck": "npm run typecheck:astro && npm run typecheck:tsc",
"prebuild": "run-p --silent --continue-on-error create:symlinks create:icons 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 --config 'config/markdownlint.json' --ignore-path .gitignore --dot './**/*.{md,markdown}'",
"lint:biome": "biome check .",
"lint": "run-p --silent lint:biome lint:md",
"format": "biome check --write .",
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "tsx scripts/new/index.ts",
"create:icons": "tsx scripts/create-icons/index.ts",
"create:redirects": "tsx scripts/redirect-from.ts",
"create:symlinks": "./scripts/create-symlinks.sh",
"move:downloads": "tsx scripts/move-downloads.ts",
"prepare": "husky config/husky"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "4.2.1",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@coingecko/cryptoformat": "^0.8.2",
"@nanostores/persistent": "^0.10.2",
"@nanostores/query": "^0.3.4",
"@nanostores/react": "^0.8.4",
"@radix-ui/react-select": "^2.1.6",
"@rainbow-me/rainbowkit": "^2.2.4",
"@tanstack/react-query": "5.67.2",
"astro": "5.4.2",
"astro-expressive-code": "^0.40.2",
"astro-redirect-from": "^1.3.0",
"date-fns": "^4.1.0",
"feather-icons": "^4.29.2",
"fraction.js": "^5.2.1",
"fuse.js": "^7.1.0",
"motion": "^12.4.10",
"nanostores": "^0.11.4",
"pigeon-maps": "^0.22.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"slugify": "^1.6.6",
"swr": "^2.3.3",
"viem": "2.23.8",
"wagmi": "2.14.12"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@kremalicious/config": "^1.1.0",
"@playwright/test": "1.51.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitest/coverage-v8": "3.0.8",
"@vitest/ui": "3.0.8",
"dms2dec": "^1.1.0",
"exif-reader": "^2.0.2",
"globby": "^14.1.0",
"hast-util-to-html": "^9.0.5",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"markdownlint-cli": "^0.44.0",
"mdast-util-to-hast": "^13.2.0",
"mdast-util-to-string": "^4.0.0",
"mdast-util-toc": "^7.1.0",
"node-iptc": "^1.0.5",
"npm-run-all": "^4.1.5",
"ora": "^8.1.1",
"sharp": "^0.33.5",
"sharp-ico": "^0.1.5",
"svgo": "^3.3.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unist-util-visit": "^5.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "3.0.8"
},
"engines": {
"node": "22"
},
"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"
]
}
}