mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.21.4 to 7.21.5. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/yannickcr/eslint-plugin-react/compare/v7.21.4...v7.21.5) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "security-checklist",
|
|
"version": "0.1.0",
|
|
"description": "A checklist for staying safe on the internet",
|
|
"scripts": {
|
|
"now-build": "next build",
|
|
"dev": "next",
|
|
"start": "next start",
|
|
"build": "next build",
|
|
"flow": "flow",
|
|
"flow start": "flow start",
|
|
"flow stop": "flow stop",
|
|
"flow status": "flow status",
|
|
"flow coverage": "flow coverage",
|
|
"prettier": "prettier",
|
|
"cypress:open": "cypress open",
|
|
"cypress:run": "cypress run",
|
|
"lint:staged": "lint-staged"
|
|
},
|
|
"dependencies": {
|
|
"fathom-client": "^2.0.3",
|
|
"next": "^9.5.5",
|
|
"next-seo": "^4.13.0",
|
|
"react": "^16.14.0",
|
|
"react-clipboard.js": "^2.0.16",
|
|
"react-dom": "^16.14.0",
|
|
"react-markdown": "^4.3.1",
|
|
"styled-components": "^4.4.1",
|
|
"throttle-debounce": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.3",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.12.1",
|
|
"@babel/preset-flow": "^7.12.1",
|
|
"@cypress/browserify-preprocessor": "^3.0.1",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-plugin-styled-components": "^1.11.1",
|
|
"babel-plugin-transform-define": "^2.0.0",
|
|
"cypress": "^5.4.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb": "^18.2.0",
|
|
"eslint-config-prettier": "^6.13.0",
|
|
"eslint-config-react-app": "^5.2.1",
|
|
"eslint-plugin-flowtype": "^4.7.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"lint-staged": "^10.4.2",
|
|
"flow-bin": "^0.136.0",
|
|
"prettier": "^2.1.2",
|
|
"prettier-eslint": "^11.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"pre-commit": "lint:staged",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/brianlovin/security-checklist.git"
|
|
},
|
|
"author": "Brian Lovin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/brianlovin/security-checklist/issues"
|
|
},
|
|
"homepage": "https://github.com/brianlovin/security-checklist#readme"
|
|
}
|