security-checklist/package.json
2019-09-07 09:44:52 -04:00

75 lines
2.1 KiB
JSON

{
"name": "security-checklist",
"version": "0.1.0",
"description": "A checklist for staying safe on the internet",
"engines": {
"node": "8.x"
},
"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": {
"@sentry/browser": "^5.4.3",
"next": "^9.0.5",
"next-seo": "^2.0.0",
"react": "^16.9.0",
"react-clipboard.js": "^2.0.13",
"react-dom": "^16.9.0",
"react-markdown": "^4.2.2",
"styled-components": "^4.3.2",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@cypress/browserify-preprocessor": "^2.1.1",
"babel-eslint": "^10.0.2",
"babel-plugin-styled-components": "^1.10.1",
"babel-plugin-transform-define": "^1.3.1",
"cypress": "^3.4.1",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"flow-bin": "^0.106.2",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"prettier-eslint": "^9.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"
}