2018-03-18 20:39:18 +01:00
|
|
|
{
|
2018-07-11 15:54:32 +02:00
|
|
|
"name": "@kremalicious/portfolio",
|
2022-11-16 00:14:59 +01:00
|
|
|
"description": "Portfolio thingy",
|
2018-03-18 20:39:18 +01:00
|
|
|
"version": "0.1.0",
|
2018-05-14 20:10:59 +02:00
|
|
|
"homepage": "https://matthiaskretschmann.com",
|
|
|
|
"repository": "github:kremalicious/portfolio",
|
|
|
|
"license": "MIT",
|
|
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
2022-11-16 00:14:59 +01:00
|
|
|
"type": "module",
|
2018-04-22 16:02:34 +02:00
|
|
|
"scripts": {
|
2022-11-16 20:04:06 +01:00
|
|
|
"start": "next",
|
|
|
|
"build": "next build",
|
2022-11-16 00:14:59 +01:00
|
|
|
"preview": "npm run build && next start",
|
2022-11-16 20:04:06 +01:00
|
|
|
"export": "next export",
|
2022-11-16 00:14:59 +01:00
|
|
|
"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",
|
2022-11-16 00:14:59 +01:00
|
|
|
"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",
|
2022-11-16 00:14:59 +01:00
|
|
|
"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": {
|
2023-01-13 00:26:35 +01:00
|
|
|
"@giphy/js-fetch-api": "^4.7.1",
|
2023-01-28 02:27:49 +01:00
|
|
|
"@radix-ui/react-select": "^1.2.0",
|
2022-04-10 01:52:12 +02:00
|
|
|
"@yaireo/relative-time": "^1.0.2",
|
2020-11-20 22:50:02 +01:00
|
|
|
"file-saver": "^2.0.5",
|
2023-02-02 21:14:13 +01:00
|
|
|
"framer-motion": "^9.0.1",
|
|
|
|
"lucide-react": "^0.109.0",
|
2023-01-29 05:27:52 +01:00
|
|
|
"next": "13.1.6",
|
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",
|
2022-11-16 00:14:59 +01:00
|
|
|
"remark": "^14.0.2",
|
|
|
|
"remark-gfm": "^3.0.1",
|
|
|
|
"remark-html": "^15.0.1",
|
2022-02-12 14:51:58 +01:00
|
|
|
"vcf": "^2.1.1"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-05 20:16:56 +01:00
|
|
|
"@svgr/webpack": "^6.5.1",
|
2022-08-25 09:03:37 +02:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2022-09-10 11:33:20 +02:00
|
|
|
"@testing-library/react": "^13.4.0",
|
2023-01-29 04:58:06 +01:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
|
2023-01-30 13:43:39 +01:00
|
|
|
"@types/jest": "^29.4.0",
|
2022-11-16 00:14:59 +01:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2023-01-16 15:16:28 +01:00
|
|
|
"@types/sharp": "^0.31.1",
|
2023-01-13 00:25:41 +01:00
|
|
|
"chalk": "^5.2.0",
|
2023-01-29 05:27:52 +01:00
|
|
|
"eslint": "^8.33.0",
|
|
|
|
"eslint-config-next": "^13.1.6",
|
|
|
|
"jest": "^29.4.1",
|
2022-05-08 15:14:12 +02:00
|
|
|
"jest-canvas-mock": "^2.4.0",
|
2023-01-29 05:27:52 +01:00
|
|
|
"jest-environment-jsdom": "^29.4.1",
|
2021-05-23 12:30:39 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-07-09 00:24:14 +02:00
|
|
|
"ora": "^6.1.2",
|
2018-05-14 01:50:11 +02:00
|
|
|
"prepend": "^1.0.2",
|
2023-01-16 15:07:20 +01:00
|
|
|
"prettier": "^2.8.3",
|
2023-01-13 01:57:53 +01:00
|
|
|
"sharp": "^0.31.3",
|
2022-11-16 21:36:25 +01:00
|
|
|
"sharp-ico": "^0.1.5",
|
2022-01-10 10:52:26 +01:00
|
|
|
"slugify": "^1.6.5",
|
2023-01-16 15:16:19 +01:00
|
|
|
"stylelint": "^14.16.1",
|
2022-11-16 00:14:59 +01:00
|
|
|
"stylelint-config-prettier": "^9.0.4",
|
|
|
|
"stylelint-prettier": "^2.0.0",
|
|
|
|
"ts-node": "^10.9.1",
|
2023-02-02 21:14:13 +01:00
|
|
|
"typescript": "^4.9.5"
|
2022-11-16 00:14:59 +01:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-11-19 08:57:41 +01:00
|
|
|
"node": "18.x"
|
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
|
|
|
}
|