1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-12-22 09:13:19 +01:00
portfolio/package.json

64 lines
1.9 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
2018-07-11 15:54:32 +02:00
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy",
2023-09-09 17:21:05 +02:00
"version": "1.0.0",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"type": "module",
2018-04-22 16:02:34 +02:00
"scripts": {
2024-04-10 17:05:26 +02:00
"dev": "npm run prebuild && next dev",
2022-11-16 20:04:06 +01:00
"build": "next build",
2024-04-10 17:05:26 +02:00
"start": "next start",
"export": "npm run prebuild && next export",
"typecheck": "tsc",
2024-07-26 13:43:45 +02:00
"lint": "biome check --write .",
2024-02-06 00:36:45 +01:00
"jest": "jest --coverage -c tests/jest.config.js",
"test": "NODE_ENV=test npm run jest",
2024-02-06 00:20:48 +01:00
"new": "node --import tsx/esm ./scripts/new.ts",
"favicon": "node --import tsx/esm ./scripts/favicon.ts",
"prebuild": "node --import tsx/esm ./scripts/prebuild.ts"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
2024-06-22 15:48:11 +02:00
"@giphy/js-fetch-api": "^5.6.0",
"@radix-ui/react-select": "^2.1.1",
2023-08-16 13:43:54 +02:00
"@yaireo/relative-time": "^1.0.4",
2020-11-20 22:50:02 +01:00
"file-saver": "^2.0.5",
"framer-motion": "^11.3.19",
"lucide-react": "^0.424.0",
"next": "14.2.5",
"next-themes": "^0.3.0",
2024-06-22 15:48:11 +02:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^15.0.1",
2023-09-19 20:51:32 +02:00
"remark-gfm": "^4.0.0",
2024-02-05 16:16:18 +01:00
"remark-html": "^16.0.1"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@kremalicious/config": "^1.0.2",
2023-08-16 13:43:54 +02:00
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.8",
2024-06-22 15:48:11 +02:00
"@testing-library/react": "^16.0.0",
2024-02-05 16:16:18 +01:00
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
2023-08-16 13:43:54 +02:00
"chalk": "^5.3.0",
2023-09-19 20:51:32 +02:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2024-02-06 02:06:58 +01:00
"jest-fetch-mock": "^3.0.3",
2021-05-23 12:30:39 +02:00
"js-yaml": "^4.1.0",
"ora": "^8.1.0",
"sharp": "^0.33.4",
2022-11-16 21:36:25 +01:00
"sharp-ico": "^0.1.5",
2023-06-18 16:24:41 +02:00
"slugify": "^1.6.6",
"tsx": "^4.16.3",
"typescript": "^5.5.4"
},
"engines": {
2024-02-06 00:20:48 +01:00
"node": "^20.6.0"
2018-03-18 20:39:18 +01:00
},
"browserslist": ["> 0.2%", "last 3 versions", "Firefox ESR", "not dead"]
2018-03-18 20:39:18 +01:00
}