1
0
Fork 0
blog/package.json

128 lines
4.4 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",
2018-07-11 17:56:13 +02:00
"main": "index.js",
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/",
2022-05-12 01:00:19 +02:00
"test": "npm run lint && jest -c .jest/jest.config.js --coverage --silent",
"test:watch": "npm run lint && jest -c .jest/jest.config.js --coverage --watch",
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}'",
2019-10-11 23:50:03 +02:00
"tsc": "tsc --noEmit",
2021-01-30 21:44:40 +01:00
"deploy": "./scripts/deploy-s3.sh",
2021-02-28 04:09:56 +01: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": {
"@kremalicious/react-feather": "^2.1.0",
2022-09-17 15:58:59 +02:00
"@rainbow-me/rainbowkit": "^0.6.0",
2022-05-07 19:38:05 +02:00
"axios": "^0.27.2",
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",
2022-09-17 15:58:59 +02:00
"ethers": "^5.7.1",
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",
2022-09-16 00:48:55 +02:00
"gatsby": "^4.23.0",
"gatsby-plugin-catch-links": "^4.23.0",
"gatsby-plugin-feed": "^4.23.0",
"gatsby-plugin-image": "^2.23.0",
2019-08-13 11:49:15 +02:00
"gatsby-plugin-lunr": "^1.5.2",
2022-09-16 00:48:55 +02:00
"gatsby-plugin-manifest": "^4.23.0",
2022-04-10 02:27:34 +02:00
"gatsby-plugin-matomo": "^0.13.0",
2018-11-05 23:36:59 +01:00
"gatsby-plugin-meta-redirect": "^1.1.1",
2022-09-16 00:48:55 +02:00
"gatsby-plugin-offline": "^5.23.0",
"gatsby-plugin-react-helmet": "^5.23.0",
"gatsby-plugin-sharp": "^4.23.0",
"gatsby-plugin-sitemap": "^5.23.0",
2021-03-06 01:35:05 +01:00
"gatsby-plugin-svgr": "^3.0.0-beta.0",
2022-04-10 02:27:34 +02:00
"gatsby-redirect-from": "^0.5.0",
2022-09-16 00:48:55 +02:00
"gatsby-remark-autolink-headers": "^5.23.0",
"gatsby-remark-copy-linked-files": "^5.23.0",
"gatsby-remark-images": "^6.23.0",
2020-05-10 23:50:59 +02:00
"gatsby-remark-images-medium-zoom": "^1.7.0",
2022-09-16 00:48:55 +02:00
"gatsby-remark-smartypants": "^5.23.0",
"gatsby-remark-vscode": "^3.3.1",
2022-09-16 00:48:55 +02:00
"gatsby-source-filesystem": "^4.23.0",
"gatsby-source-graphql": "^4.23.0",
"gatsby-transformer-remark": "^5.23.0",
"gatsby-transformer-sharp": "^4.23.0",
"nord-visual-studio-code": "github:arcticicestudio/nord-visual-studio-code",
2022-04-10 02:27:34 +02:00
"pigeon-maps": "^0.21.0",
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",
"react-helmet": "^6.1.0",
2022-08-25 08:49:09 +02:00
"react-transition-group": "^4.4.5",
2022-04-20 22:03:12 +02:00
"rehype-react": "^7.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"slugify": "^1.6.5",
"unified": "^10.1.2",
2022-09-17 15:58:59 +02:00
"use-debounce": "^8.0.4",
"wagmi": "^0.6.6"
2015-05-31 20:23:26 +02:00
},
"devDependencies": {
2022-08-25 08:49:09 +02:00
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
2022-09-10 11:57:41 +02:00
"@testing-library/react": "^13.4.0",
"@types/fs-extra": "^9.0.13",
2022-09-17 15:58:59 +02:00
"@types/jest": "^29.0.3",
2021-08-28 13:22:25 +02:00
"@types/lunr": "^2.3.4",
2022-09-17 15:58:59 +02:00
"@types/node": "^18.7.18",
2022-09-10 11:57:41 +02:00
"@types/react": "^18.0.18",
2022-07-07 01:30:21 +02:00
"@types/react-dom": "^18.0.6",
2022-02-12 14:30:57 +01:00
"@types/react-helmet": "^6.1.5",
2022-07-07 01:30:21 +02:00
"@types/react-transition-group": "^4.4.5",
2022-09-10 11:57:41 +02:00
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
2022-04-10 02:27:34 +02:00
"@welldone-software/why-did-you-render": "^7.0.1",
2022-09-16 00:48:55 +02:00
"babel-preset-gatsby": "^2.23.0",
2022-09-17 15:58:59 +02:00
"eslint": "^8.23.1",
2022-04-10 02:27:34 +02:00
"eslint-config-prettier": "^8.5.0",
2020-06-01 12:50:14 +02:00
"eslint-plugin-graphql": "^4.0.0",
2022-08-25 08:49:09 +02:00
"eslint-plugin-jsx-a11y": "^6.6.1",
2022-07-07 01:30:21 +02:00
"eslint-plugin-prettier": "^4.2.1",
2022-09-10 11:57:41 +02:00
"eslint-plugin-react": "^7.31.8",
2022-09-17 15:58:59 +02:00
"eslint-plugin-testing-library": "^5.6.4",
2022-04-20 22:03:12 +02:00
"fs-extra": "^10.1.0",
2019-05-02 21:11:52 +02:00
"identity-obj-proxy": "^3.0.0",
2022-09-16 00:48:55 +02:00
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
2022-08-25 08:49:09 +02:00
"markdownlint-cli": "^0.32.2",
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",
2022-07-07 01:30:21 +02:00
"ora": "^6.1.2",
2022-08-25 08:49:09 +02:00
"postcss": "^8.4.16",
2022-07-07 01:30:21 +02:00
"prettier": "^2.7.1",
2022-08-25 08:49:09 +02:00
"stylelint": "^14.11.0",
2022-04-10 02:27:34 +02:00
"stylelint-config-css-modules": "^4.1.0",
2021-11-28 17:48:05 +01:00
"stylelint-config-prettier": "^9.0.3",
2022-08-25 08:49:09 +02:00
"stylelint-config-standard": "^28.0.0",
2021-11-28 17:48:05 +01:00
"stylelint-prettier": "^2.0.0",
2022-08-25 08:49:09 +02:00
"ts-node": "^10.9.1",
2022-09-10 11:57:41 +02:00
"typescript": "^4.8.3",
2021-08-28 13:22:25 +02:00
"typescript-plugin-css-modules": "^3.4.0"
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
}