rickvanlieshout.com/package.json

147 lines
4.8 KiB
JSON
Raw Normal View History

2016-03-11 23:28:19 +01:00
{
2016-06-03 01:32:38 +02:00
"name": "gatsby-starter-lumen",
2022-09-14 22:56:05 +02:00
"version": "1.1.384",
"description": "A constantly evolving and thoughtful architecture for creating static blogs with Gatsby",
"keywords": [
"gatsby",
"graphql",
"react",
"blog"
],
"repository": {
"type": "git",
"url": "https://github.com/alxshelepenok/gatsby-starter-lumen.git"
},
"license": "MIT",
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
2016-03-11 23:28:19 +01:00
"scripts": {
"build": "npm run clean && gatsby build",
2018-11-09 18:08:48 +01:00
"clean": "rimraf .cache public",
"format": "npm run format:ts && npm run format:scss",
"format:scss": "stylelint \"src/**/*.scss\" --fix",
"format:ts": "eslint \"src\" --ext .tsx,.ts --fix && prettier --write .",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:commit": "commitlint --edit",
2018-11-09 18:08:48 +01:00
"lint:scss": "stylelint \"src/**/*.scss\"",
2022-04-16 17:01:59 +02:00
"lint:staged": "lint-staged",
"lint:ts": "eslint \"src\" --ext .tsx,.ts && prettier --check .",
"prepare": "husky install",
"semantic-release": "semantic-release",
"serve": "gatsby serve",
"start": "npm run clean && gatsby develop",
"test": "jest --config ./internal/testing/jest-config.ts",
"test:coverage": "jest --coverage --config ./internal/testing/jest-config.ts",
"test:watch": "jest --watch --config ./internal/testing/jest-config.ts"
2016-03-11 23:28:19 +01:00
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
2022-05-27 19:13:15 +02:00
"*.{tsx?}": [
"npm run format:ts"
],
2022-05-27 19:13:15 +02:00
"*.{(sc|sa|c)ss}": [
"npm run format:scss"
]
},
2016-03-11 23:28:19 +01:00
"dependencies": {
2022-09-08 18:30:26 +02:00
"@sentry/gatsby": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"classnames": "^2.3.2",
"disqus-react": "^1.1.3",
2022-09-13 22:54:35 +02:00
"gatsby": "^4.23.0",
"gatsby-link": "^4.23.0",
"gatsby-plugin-catch-links": "^4.23.0",
"gatsby-plugin-feed": "^4.23.0",
"gatsby-plugin-google-gtag": "^4.23.0",
"gatsby-plugin-image": "^2.23.0",
"gatsby-plugin-manifest": "^4.23.0",
"gatsby-plugin-offline": "^5.23.0",
"gatsby-plugin-optimize-svgs": "^1.0.5",
2022-09-13 22:54:35 +02:00
"gatsby-plugin-react-helmet": "^5.23.0",
"gatsby-plugin-sass": "^5.23.0",
"gatsby-plugin-sharp": "^4.23.0",
"gatsby-plugin-sitemap": "^5.23.0",
"gatsby-remark-autolink-headers": "^5.23.0",
"gatsby-remark-copy-linked-files": "^5.23.0",
"gatsby-remark-external-links": "0.0.4",
2022-09-13 22:54:35 +02:00
"gatsby-remark-images": "^6.23.0",
"gatsby-remark-prismjs": "^6.23.0",
"gatsby-remark-responsive-iframe": "^5.23.0",
"gatsby-remark-smartypants": "^5.23.0",
"gatsby-source-filesystem": "^4.23.0",
"gatsby-transformer-remark": "^5.23.0",
"gatsby-transformer-sharp": "^4.23.0",
"prismjs": "^1.29.0",
2022-06-15 00:33:59 +02:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0"
2016-03-11 23:28:19 +01:00
},
"devDependencies": {
"@alxshelepenok/eslint-config": "^1.0.98",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/globals": "^27.5.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@swc/core": "^1.3.1",
"@swc/jest": "^0.2.22",
"@types/gatsby-transformer-remark": "^2.9.1",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.24",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-test-renderer": "^18.0.0",
"@types/sass": "^1.43.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.10",
"browserslist": "^4.21.3",
"codecov": "^3.8.3",
"concurrently": "^7.4.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "8.0.1",
2019-04-08 17:53:56 +02:00
"identity-obj-proxy": "3.0.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^13.0.3",
"lost": "9.0.1",
"postcss": "^8.4.16",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
2022-06-15 00:33:59 +02:00
"react-test-renderer": "^18.2.0",
"rimraf": "3.0.2",
"sass": "^1.54.9",
"semantic-release": "^19.0.5",
"source-map-support": "^0.5.21",
"stylelint": "^14.11.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=v16.17.0"
2016-03-11 23:28:19 +01:00
}
2017-10-30 22:25:25 +01:00
}