mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 01:46:51 +01:00
82ca7fe162
Bumps [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) from 0.5.8 to 0.7.0. - [Release notes](https://github.com/withastro/language-tools/releases) - [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md) - [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.7.0/packages/astro-check) --- updated-dependencies: - dependency-name: "@astrojs/check" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
144 lines
4.8 KiB
JSON
144 lines
4.8 KiB
JSON
{
|
|
"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": {
|
|
"start": "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": "run-p --silent lint:js lint:css lint:md",
|
|
"lint:js": "eslint --ignore-path .gitignore './{src,test,scripts}/**/*.{ts,tsx,astro,mjs,js,cjs}'",
|
|
"lint:css": "stylelint --config '.config/.stylelintrc.json' 'src/**/*.css'",
|
|
"lint:md": "markdownlint --config '.config/.markdownlint.json' --ignore-path .gitignore --dot './**/*.{md,markdown}'",
|
|
"format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx,md,json,css,astro,yml}'",
|
|
"deploy:s3": "./scripts/deploy-s3.sh",
|
|
"new": "node --loader ts-node/esm scripts/new/index.ts",
|
|
"create:icons": "node --loader ts-node/esm scripts/create-icons/index.ts",
|
|
"create:redirects": "node --loader ts-node/esm scripts/redirect-from.ts",
|
|
"create:symlinks": "./scripts/create-symlinks.sh",
|
|
"move:downloads": "node --loader ts-node/esm scripts/move-downloads.ts",
|
|
"prepare": "husky .config/husky",
|
|
"lint:staged": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,astro}": [
|
|
"prettier --write",
|
|
"eslint"
|
|
],
|
|
"*.css": [
|
|
"stylelint --config '.config/.stylelintrc.json' --fix",
|
|
"prettier --write"
|
|
],
|
|
"**/*.json": [
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"markdownlint --config '.config/.markdownlint.json'",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.7.0",
|
|
"@astrojs/react": "^3.1.0",
|
|
"@astrojs/rss": "^4.0.5",
|
|
"@astrojs/sitemap": "^3.1.1",
|
|
"@coingecko/cryptoformat": "^0.8.1",
|
|
"@nanostores/persistent": "^0.10.1",
|
|
"@nanostores/query": "^0.2.10",
|
|
"@nanostores/react": "^0.7.2",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@rainbow-me/rainbowkit": "^2.0.2",
|
|
"@tanstack/react-query": "^5.27.5",
|
|
"astro": "4.5.2",
|
|
"astro-expressive-code": "^0.33.4",
|
|
"astro-redirect-from": "^1.0.6",
|
|
"date-fns": "^3.4.0",
|
|
"dms2dec": "^1.1.0",
|
|
"fast-exif": "^2.0.1",
|
|
"feather-icons": "^4.29.1",
|
|
"fraction.js": "^4.3.7",
|
|
"fuse.js": "^7.0.0",
|
|
"motion": "^10.17.0",
|
|
"nanostores": "^0.10.0",
|
|
"pigeon-maps": "^0.21.4",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"sharp": "^0.33.2",
|
|
"slugify": "^1.6.6",
|
|
"swr": "^2.2.5",
|
|
"viem": "^2.8.5",
|
|
"wagmi": "^2.5.7"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.42.1",
|
|
"@testing-library/jest-dom": "^6.4.2",
|
|
"@testing-library/react": "^14.2.1",
|
|
"@types/node": "^20.11.26",
|
|
"@types/react": "^18.2.65",
|
|
"@types/react-dom": "^18.2.21",
|
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
"@typescript-eslint/parser": "^7.2.0",
|
|
"@vitest/coverage-v8": "^1.3.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-astro": "^0.31.4",
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-react": "^7.34.0",
|
|
"eslint-plugin-testing-library": "^6.2.0",
|
|
"hast-util-to-html": "^9.0.0",
|
|
"husky": "^9.0.11",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jsdom": "^24.0.0",
|
|
"markdownlint-cli": "^0.39.0",
|
|
"mdast-util-to-hast": "^13.1.0",
|
|
"mdast-util-to-string": "^4.0.0",
|
|
"mdast-util-toc": "^7.0.0",
|
|
"node-iptc": "^1.0.5",
|
|
"npm-run-all": "^4.1.5",
|
|
"ora": "^8.0.1",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-astro": "^0.13.0",
|
|
"sharp-ico": "^0.1.5",
|
|
"stylelint": "^16.2.1",
|
|
"stylelint-config-css-modules": "^4.4.0",
|
|
"stylelint-config-standard": "^36.0.0",
|
|
"stylelint-prettier": "^5.0.0",
|
|
"svgo": "^3.2.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.2",
|
|
"unist-util-visit": "^5.0.0",
|
|
"vite-tsconfig-paths": "^4.3.1",
|
|
"vitest": "^1.3.1"
|
|
},
|
|
"engines": {
|
|
"node": "20"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|