portfolio/package.json

77 lines
2.2 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": {
2022-11-16 20:04:06 +01:00
"start": "next",
"build": "next build",
"preview": "npm run build && next start",
2022-11-16 20:04:06 +01:00
"export": "next export",
"typecheck": "tsc",
"lint:js": "next lint",
"lint:css": "stylelint ./src/**/*.css",
2018-09-20 19:06:46 +02:00
"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",
2021-02-06 13:19:30 +01:00
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "ts-node-esm ./scripts/new.ts",
2022-11-16 20:04:06 +01:00
"favicon": "ts-node-esm ./scripts/favicon.ts"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
"@giphy/js-fetch-api": "^5.3.0",
"@radix-ui/react-select": "^2.0.0",
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": "^10.18.0",
"lucide-react": "^0.314.0",
2024-01-19 21:09:23 +01:00
"next": "14.1.0",
2023-01-28 02:27:49 +01:00
"next-themes": "^0.2.1",
2022-07-09 00:24:14 +02:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-06-18 16:24:41 +02:00
"remark": "^14.0.3",
2023-09-19 20:51:32 +02:00
"remark-gfm": "^4.0.0",
"remark-html": "^15.0.2",
"vcf": "github:jhermsmeier/node-vcf"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
2023-08-16 13:43:54 +02:00
"@svgr/webpack": "^8.1.0",
2024-01-19 21:09:23 +01:00
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
2024-01-19 21:09:23 +01:00
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
2023-08-16 13:43:54 +02:00
"chalk": "^5.3.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.1.0",
2023-09-19 20:51:32 +02:00
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
2023-09-19 20:51:32 +02:00
"jest-environment-jsdom": "^29.7.0",
2021-05-23 12:30:39 +02:00
"js-yaml": "^4.1.0",
"ora": "^8.0.1",
2018-05-14 01:50:11 +02:00
"prepend": "^1.0.2",
"prettier": "^3.2.2",
2023-09-19 20:51:32 +02:00
"sharp": "^0.32.6",
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",
2023-09-09 17:21:05 +02:00
"stylelint": "^15.10.3",
"stylelint-prettier": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": "18"
2018-03-18 20:39:18 +01:00
},
2018-05-25 16:43:04 +02:00
"browserslist": [
2021-09-19 16:36:54 +02:00
"> 0.2%",
2022-11-17 02:04:49 +01:00
"last 3 versions",
2021-09-19 16:36:54 +02:00
"Firefox ESR",
2022-11-17 02:04:49 +01:00
"not dead"
2018-05-25 16:43:04 +02:00
]
2018-03-18 20:39:18 +01:00
}