1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-12-22 09:13:19 +01:00
portfolio/package.json
dependabot[bot] c566d0e0d5
Bump stylelint-prettier from 4.0.2 to 4.1.0 (#1252)
Bumps [stylelint-prettier](https://github.com/prettier/stylelint-prettier) from 4.0.2 to 4.1.0.
- [Changelog](https://github.com/prettier/stylelint-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/stylelint-prettier/compare/v4.0.2...v4.1.0)

---
updated-dependencies:
- dependency-name: stylelint-prettier
  dependency-type: direct:development
  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>
2024-01-19 16:02:10 +00:00

77 lines
2.2 KiB
JSON

{
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy",
"version": "1.0.0",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"type": "module",
"scripts": {
"start": "next",
"build": "next build",
"preview": "npm run build && next start",
"export": "next export",
"typecheck": "tsc",
"lint:js": "next lint",
"lint:css": "stylelint ./src/**/*.css",
"lint": "npm run lint:js && npm run lint:css",
"format": "prettier --write 'src/**/*.{ts,tsx,css}'",
"jest": "jest --coverage -c tests/jest.config.ts",
"test": "NODE_ENV=test npm run lint && npm run typecheck && npm run jest",
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "ts-node-esm ./scripts/new.ts",
"favicon": "ts-node-esm ./scripts/favicon.ts"
},
"dependencies": {
"@giphy/js-fetch-api": "^5.2.0",
"@radix-ui/react-select": "^2.0.0",
"@yaireo/relative-time": "^1.0.4",
"file-saver": "^2.0.5",
"framer-motion": "^10.18.0",
"lucide-react": "^0.290.0",
"next": "14.0.3",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "^14.0.3",
"remark-gfm": "^4.0.0",
"remark-html": "^15.0.2",
"vcf": "github:jhermsmeier/node-vcf"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"chalk": "^5.3.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"ora": "^7.0.1",
"prepend": "^1.0.2",
"prettier": "^3.2.2",
"sharp": "^0.32.6",
"sharp-ico": "^0.1.5",
"slugify": "^1.6.6",
"stylelint": "^15.10.3",
"stylelint-prettier": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": "18"
},
"browserslist": [
"> 0.2%",
"last 3 versions",
"Firefox ESR",
"not dead"
]
}