mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 09:13:19 +01:00
1b993b16c1
Bumps [next](https://github.com/vercel/next.js) from 14.1.0 to 14.2.3. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v14.1.0...v14.2.3) --- updated-dependencies: - dependency-name: next 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>
76 lines
2.2 KiB
JSON
76 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": {
|
|
"dev": "npm run prebuild && next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"export": "npm run prebuild && 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.js",
|
|
"test": "NODE_ENV=test npm run prebuild && npm run lint && npm run typecheck && npm run jest",
|
|
"new": "node --import tsx/esm ./scripts/new.ts",
|
|
"favicon": "node --import tsx/esm ./scripts/favicon.ts",
|
|
"prebuild": "node --import tsx/esm ./scripts/prebuild.ts"
|
|
},
|
|
"dependencies": {
|
|
"@giphy/js-fetch-api": "^5.4.0",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@yaireo/relative-time": "^1.0.4",
|
|
"file-saver": "^2.0.5",
|
|
"framer-motion": "^11.0.8",
|
|
"lucide-react": "^0.363.0",
|
|
"next": "14.2.3",
|
|
"next-themes": "^0.2.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"remark": "^15.0.1",
|
|
"remark-gfm": "^4.0.0",
|
|
"remark-html": "^16.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/webpack": "^8.1.0",
|
|
"@testing-library/jest-dom": "^6.4.1",
|
|
"@testing-library/react": "^15.0.7",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/file-saver": "^2.0.7",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"chalk": "^5.3.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^14.1.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"js-yaml": "^4.1.0",
|
|
"ora": "^8.0.1",
|
|
"prettier": "^3.2.4",
|
|
"sharp": "^0.33.2",
|
|
"sharp-ico": "^0.1.5",
|
|
"slugify": "^1.6.6",
|
|
"stylelint": "^16.3.1",
|
|
"stylelint-prettier": "^5.0.0",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"engines": {
|
|
"node": "^20.6.0"
|
|
},
|
|
"browserslist": [
|
|
"> 0.2%",
|
|
"last 3 versions",
|
|
"Firefox ESR",
|
|
"not dead"
|
|
]
|
|
}
|