mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
76 lines
2.1 KiB
JSON
76 lines
2.1 KiB
JSON
{
|
|
"name": "@kremalicious/portfolio",
|
|
"description": "Portfolio thingy",
|
|
"version": "0.1.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": "^4.7.1",
|
|
"@yaireo/relative-time": "^1.0.2",
|
|
"file-saver": "^2.0.5",
|
|
"framer-motion": "^8.5.0",
|
|
"next": "13.1.4",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-feather": "^2.0.10",
|
|
"remark": "^14.0.2",
|
|
"remark-gfm": "^3.0.1",
|
|
"remark-html": "^15.0.1",
|
|
"vcf": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/webpack": "^6.5.1",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@types/jest": "^29.2.6",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/sharp": "^0.31.1",
|
|
"chalk": "^5.2.0",
|
|
"eslint": "^8.32.0",
|
|
"eslint-config-next": "^13.1.4",
|
|
"jest": "^29.3.1",
|
|
"jest-canvas-mock": "^2.4.0",
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
"js-yaml": "^4.1.0",
|
|
"ora": "^6.1.2",
|
|
"prepend": "^1.0.2",
|
|
"prettier": "^2.8.3",
|
|
"sharp": "^0.31.3",
|
|
"sharp-ico": "^0.1.5",
|
|
"slugify": "^1.6.5",
|
|
"stylelint": "^14.16.1",
|
|
"stylelint-config-prettier": "^9.0.4",
|
|
"stylelint-prettier": "^2.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"engines": {
|
|
"node": "18.x"
|
|
},
|
|
"browserslist": [
|
|
"> 0.2%",
|
|
"last 3 versions",
|
|
"Firefox ESR",
|
|
"not dead"
|
|
]
|
|
}
|