1
0
Fork 0
blog/package.json

126 lines
4.2 KiB
JSON
Raw Normal View History

2013-11-18 01:08:13 +01:00
{
2018-07-11 17:56:13 +02:00
"name": "@kremalicious/blog",
"version": "4.0.0",
"author": "Matthias Kretschmann <m@kretschmann.io>",
2018-07-20 16:02:05 +02:00
"description": "Blog of Designer & Developer Matthias Kretschmann",
2015-06-07 03:11:46 +02:00
"homepage": "https://kremalicious.com",
2015-06-07 00:44:18 +02:00
"license": "MIT",
2015-11-20 15:53:49 +01:00
"scripts": {
2019-11-16 16:10:34 +01:00
"start": "gatsby develop --host 0.0.0.0",
2021-03-21 21:50:46 +01:00
"build": "gatsby build",
2018-09-30 03:11:08 +02:00
"ssr": "npm run build && serve -s public/",
"test": "npm run lint && npm run type-check && npm run jest",
"jest": "jest -c .jest/jest.config.js --coverage --silent",
2019-07-15 19:42:13 +02:00
"lint": "run-p --continue-on-error lint:js lint:css lint:md",
2019-10-02 20:48:59 +02:00
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
2021-03-04 01:20:39 +01:00
"lint:css": "stylelint 'src/**/*.css'",
2019-10-02 13:35:50 +02:00
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,public,.cache,.git,coverage}/**/*'",
2021-03-04 01:20:39 +01:00
"format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx,md,json,css}'",
"type-check": "tsc --noEmit",
2022-11-09 00:10:51 +01:00
"deploy:s3": "./scripts/deploy-s3.sh",
2022-09-21 12:24:54 +02:00
"new": "ts-node scripts/new.ts"
2015-11-20 15:53:49 +01:00
},
2017-05-28 04:24:33 +02:00
"browserslist": [
2019-10-03 03:23:47 +02:00
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
2017-05-28 04:24:33 +02:00
],
2015-05-31 20:23:26 +02:00
"dependencies": {
2023-02-28 18:50:51 +01:00
"@rainbow-me/rainbowkit": "^0.11.0",
"axios": "^1.3.4",
2022-09-17 15:58:59 +02:00
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
2018-09-14 00:35:40 +02:00
"dms2dec": "^1.1.0",
"ethers": "^5.7.2",
2018-09-07 13:08:01 +02:00
"fast-exif": "^1.0.1",
2022-04-10 02:27:34 +02:00
"feather-icons": "^4.29.0",
"fraction.js": "^4.2.0",
2023-02-28 18:50:51 +01:00
"framer-motion": "^10.0.1",
2023-04-01 16:25:09 +02:00
"gatsby": "^5.8.1",
"gatsby-plugin-catch-links": "^5.8.0",
"gatsby-plugin-feed": "^5.8.0",
"gatsby-plugin-image": "^3.8.0",
2019-08-13 11:49:15 +02:00
"gatsby-plugin-lunr": "^1.5.2",
2023-04-01 16:25:09 +02:00
"gatsby-plugin-manifest": "^5.8.0",
2018-11-05 23:36:59 +01:00
"gatsby-plugin-meta-redirect": "^1.1.1",
2023-04-01 16:25:09 +02:00
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-sitemap": "^6.8.0",
2021-03-06 01:35:05 +01:00
"gatsby-plugin-svgr": "^3.0.0-beta.0",
2023-04-01 16:25:09 +02:00
"gatsby-redirect-from": "^1.0.1",
"gatsby-remark-autolink-headers": "^6.8.0",
"gatsby-remark-copy-linked-files": "^6.8.0",
"gatsby-remark-images": "^7.8.0",
2020-05-10 23:50:59 +02:00
"gatsby-remark-images-medium-zoom": "^1.7.0",
2023-04-01 16:25:09 +02:00
"gatsby-remark-smartypants": "^6.8.0",
"gatsby-remark-vscode": "^3.3.1",
2023-04-01 16:25:09 +02:00
"gatsby-source-filesystem": "^5.8.0",
"gatsby-source-graphql": "^5.8.0",
"gatsby-transformer-remark": "^6.8.0",
"gatsby-transformer-sharp": "^5.8.0",
"nord-visual-studio-code": "github:arcticicestudio/nord-visual-studio-code",
"pigeon-maps": "^0.21.3",
2018-09-14 00:35:40 +02:00
"pigeon-marker": "^0.3.4",
2022-07-07 01:30:21 +02:00
"react": "^18.2.0",
"react-clipboard.js": "^2.0.16",
2022-07-07 01:30:21 +02:00
"react-dom": "^18.2.0",
2022-12-25 16:16:25 +01:00
"react-feather": "^2.0.10",
2023-01-29 23:19:47 +01:00
"rehype-react": "^7.1.2",
2022-04-20 22:03:12 +02:00
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
2023-04-01 16:25:09 +02:00
"slugify": "^1.6.6",
"unified": "^10.1.2",
2023-01-29 23:19:47 +01:00
"use-debounce": "^9.0.3",
2023-02-28 18:50:51 +01:00
"wagmi": "^0.11.7"
2015-05-31 20:23:26 +02:00
},
"devDependencies": {
2023-04-01 16:29:31 +02:00
"@svgr/webpack": "^7.0.0",
2022-08-25 08:49:09 +02:00
"@testing-library/jest-dom": "^5.16.5",
2023-04-01 16:27:55 +02:00
"@testing-library/react": "^14.0.0",
2023-04-01 16:20:39 +02:00
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
2023-01-29 23:19:47 +01:00
"@types/fs-extra": "^11.0.1",
2023-04-01 16:27:55 +02:00
"@types/jest": "^29.5.0",
2021-08-28 13:22:25 +02:00
"@types/lunr": "^2.3.4",
2023-04-01 16:17:31 +02:00
"@types/node": "^18.15.11",
2023-04-01 16:20:39 +02:00
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
2023-04-01 16:17:31 +02:00
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
2023-04-01 16:25:09 +02:00
"babel-preset-gatsby": "^3.8.0",
2023-04-01 16:17:31 +02:00
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
2020-06-01 12:50:14 +02:00
"eslint-plugin-graphql": "^4.0.0",
2023-01-29 23:19:47 +01:00
"eslint-plugin-jsx-a11y": "^6.7.1",
2022-07-07 01:30:21 +02:00
"eslint-plugin-prettier": "^4.2.1",
2023-01-29 23:19:47 +01:00
"eslint-plugin-react": "^7.32.2",
2023-04-01 16:17:31 +02:00
"eslint-plugin-testing-library": "^5.10.2",
2023-04-01 16:20:39 +02:00
"fs-extra": "^11.1.1",
2019-05-02 21:11:52 +02:00
"identity-obj-proxy": "^3.0.0",
2023-04-01 16:27:55 +02:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
2023-01-29 23:19:47 +01:00
"markdownlint-cli": "^0.33.0",
2019-10-05 00:30:38 +02:00
"node-iptc": "^1.0.5",
2018-12-01 20:38:05 +01:00
"npm-run-all": "^4.1.5",
2023-04-01 16:20:39 +02:00
"ora": "^6.3.0",
2023-01-29 23:19:47 +01:00
"postcss": "^8.4.21",
2023-04-01 16:15:56 +02:00
"prettier": "^2.8.7",
"stylelint": "^15.4.0",
2023-02-28 18:50:51 +01:00
"stylelint-config-css-modules": "^4.2.0",
2023-04-01 16:15:56 +02:00
"stylelint-config-standard": "^32.0.0",
2023-02-28 18:50:51 +01:00
"stylelint-prettier": "^3.0.0",
2022-08-25 08:49:09 +02:00
"ts-node": "^10.9.1",
2023-04-01 16:20:39 +02:00
"typescript": "^5.0.3",
"typescript-plugin-css-modules": "^5.0.0"
2015-05-31 20:23:26 +02:00
},
"overrides": {
"graphql": "^16.6.0"
},
"engines": {
"node": "18"
},
2015-05-31 20:23:26 +02:00
"repository": {
"type": "git",
2018-07-11 17:56:13 +02:00
"url": "https://github.com/kremalicious/blog.git"
2015-05-31 20:23:26 +02:00
}
2013-11-18 01:08:13 +01:00
}